你写微信接口真不错,真心的感谢你啊
By 阿庆说
at 2014-05-19 01:40 • 1645次点击
$(function(){
$("#go-to-top").click(function(){
$("html, body").animate({"scrollTop": 0}, 400);
return false;
});
$(window).scroll(function() {
var top = $(document).scrollTop();
var g = $("#go-to-top");
if (top > 300 && g.is(":hidden")) {
g.fadeIn();
} else if(top < 300 && g.is(":visible")) {
g.fadeOut();
}
});
})
阿庆说 at 2014-05-19 01:41
1
请 登录 后发表评论