jquery移动到顶部特效,返回顶部

html

    
<div class="actGotop"><a href="javascript:;" title="返回顶部"></a></div>

js 需要引入jquery库


<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript">
$(function(){   
    $(window).scroll(function() {      
        if($(window).scrollTop() >= 100){
            $('.actGotop').fadeIn(300); 
        }else{    
            $('.actGotop').fadeOut(300);    
        }  
    });
    $('.actGotop').click(function(){
    $('html,body').animate({scrollTop: '0px'}, 800);});   
});
</script>
THE END
分享
二维码
< <上一篇
下一篇>>