function gotop(){ $(window).scroll(function(e) { if($(window).scrolltop()>100) $(".gotop").fadein(350).css("display","block"); else $(".gotop").fadeout(350).css("display","none"); }); $(".gotop").click(function(e) { $('body,html').animate({scrolltop:0},500); return false; }); }; $(document).ready(function() { //底部固定区域占位 if( $(".fixed-bottom").is(":visible") ){ $("#wrapper").css( "paddingbottom",$(".fixed-bottom").height() ); }else{ } //返回顶部 gotop(); //内容加载后的运动效果 dataanimate(); });