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');
}
} |