Jquery常用插件及功能片段
3 月,跳不动了?>>> 返回顶部 <style type="text/css"> .to-top {width:37px;height:36px;position:fixed;bottom:150px;right:40px;display:none;background-position-x:-37px;background-image:url(totop.png); } .to-top:hover {background-position-x:0px;} </style> <div class="to-top"></div> <script type="text/javascript"> $(function(){ $win = $(window); $totop = $('.to-top'); $win.scroll(function(){ if( $win.scrollTop()>100 ){ $totop.fadeIn('slow'); }else{ $totop.fadeOut('slow'); } }); $totop.click(function(){ $('body, html').animate({scrollTop:0}, 800); }); }); </script> 解决手机浏览器bfcache导致的后腿页面js不执行 window