window.addEventListener('scroll', function () { var top = $(window).scrollTop(); this.btnShow = top < 2500 console.log(this.btnShow) }); function中的内容, ...
分类:
其他好文 时间:
2020-06-24 20:06:43
阅读次数:
61
效果图 功能 实现bar左右拖拽 左侧:js通过width控制 :style="{width: lwidth}" 右侧:盒子设置定位position,js通过的left来控制,同时样式需要设置 right: 0; bottom: 0; 才会出现width 中间:设置定位position,使用calc ...
分类:
其他好文 时间:
2020-06-24 19:53:14
阅读次数:
108
1.嵌套类,类可以嵌套在其他类中: class Outer { private val bar: Int = 1 class Nested { fun foo() = 2 } } val demo = Outer.Nested().foo() // == 2 2.内部类,标记为inner的嵌套类能够 ...
分类:
其他好文 时间:
2020-06-24 16:15:38
阅读次数:
42
一、scroll 相关属性 1、window.onscroll() 方法 当我们用鼠标滚轮,滚动网页的时候,会触发 window.onscroll() 方法。 如果你需要做滚动监听,可以使用这个方法。 2、ScrollWidth 和 scrollHeight `ScrollWidth` 和 `scr ...
分类:
Web程序 时间:
2020-06-24 12:23:39
阅读次数:
96
Substring with Concatenation of All Words (H) 题目 You are given a string, s, and a list of words, words, that are all of the same length. Find all star ...
分类:
其他好文 时间:
2020-06-24 12:04:23
阅读次数:
38
1095 Cars on Campus (30分) Zhejiang University has 8 campuses and a lot of gates. From each gate we can collect the in/out times and the plate numbers ...
分类:
编程语言 时间:
2020-06-24 00:20:12
阅读次数:
73
页面滚动时,添加平滑特效 1.在页面入口处,添加css 1 html { 2 scroll-behavior: smooth; 3 } 添加全局css之后,直接使用window.scroll(0,0)就可以平滑滚动到顶部了。 注:兼容性很差,仅支持火狐、chrome高级版本 2.指定滚动操作,使用平 ...
分类:
其他好文 时间:
2020-06-23 01:23:04
阅读次数:
130
如果一个类没有自己的构造函数,编译器会在需要的时候为其合成一个出来,俗称:合成默认构造函数。但是请注意是在需要的时候,并不是所有情况。 请看下面代码: 1 #include<iostream> 2 using namespace std; 3 class Foo { 4 public: 5 int ...
分类:
编程语言 时间:
2020-06-23 01:10:22
阅读次数:
75
1:递归 一:什么是递归 迭代器是间接或者直接调用自己本身 二:代码演示 def foo(): print('from foo') foo() foo() def bar(): print("from bar") def test(): print("from test") bar() test() ...
分类:
其他好文 时间:
2020-06-23 00:45:51
阅读次数:
59
获取滚动轴距离页面顶部距离:onPageScroll生命周期函数 设置滚动轴距离页面顶部的距离uni.pageScrollTo()方法 uni.pageScrollTo({ scrollTop: 0, //距离页面顶部的距离 duration: 300 }); ...
分类:
移动开发 时间:
2020-06-22 15:24:40
阅读次数:
304