超酷的响应式dribbble设计作品瀑布流布局效果 | javascript | 前端观察

我是创始人李岩:很抱歉!给自己产品做个广告,点击进来看看。  
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
$(function(){
	$('body').append('<div id="backtotop"><div></div></div>');
	initgototop();
});
&
function initgototop() {
	var orig_scroll_height = jquery("#footer").position().top - jquery(window).height() - 200;
&
	// fade in #top_button
	jquery(function () {
		jquery(window).scroll(function () {
			//console.log(jquery(this).scrolltop());
			if (jquery(this).scrolltop() > 100) {
				jquery('#backtotop').addclass('showme');
			} else {
				jquery('#backtotop').removeclass('showme');
			}
		});
&
		// scroll body to 0px on click
		jquery('#backtotop').click(function () {
			jquery('body,html').animate({
				scrolltop: 0
			},  400);
			return false;
		});
	});
&
	if (jquery(window).scrolltop() == 0) {
		jquery('#backtotop').removeclass('showme');
	}else{
		jquery('#backtotop').addclass('showme');
	}
}

随意打赏

提交建议
微信扫一扫,分享给好友吧。