javascript

位置:IT落伍者 >> javascript >> 浏览文章

jquery返回顶部代码


发布日期:2019年04月09日
 
jquery返回顶部代码

分享一个jquery在返回顶部在代码不依赖CSS

$("body")append("

");

var totop=$("#toTop");

totopbind({

click:function(){

$("htmlbody")animate({scrollTop:})

}

mouseover:function(){

$("#toTopTips")stop(falsetrue)fadeIn()

$(this)css({"backgroundcolor":"#BFF"})

}

mouseout:function(){

$("#toTopTips")css("display""none")

$(this)css({"backgroundcolor":"#F"})

}

})

$(window)scroll(function(){

if($browsermsie && ($browserversion == "") && !$supportstyle){//如果IE

totopcss({"top":($(window)scrollTop()+$(window)height())+"px""position":"absolute"});

}

if($(window)scrollTop()<=){

totopfadeOut();

}else{

totopfadeIn();

}

});

上一篇:JavaScript的20条常规建议

下一篇:JS模拟的腾讯微博app撕纸效果