码迷,mamicode.com
首页 > Web开发 > 详细

JS 回到顶部插件

时间:2016-06-19 10:16:23      阅读:262      评论:0      收藏:0      [点我收藏+]

标签:js 回到顶部插件

=====================js==============

;(function($){
    $.extend({
        myScrollUp:function(options){
        
        
            var defaults={
                    scrollName:"scrollUp",
                    topDistance:"300",
                    topSpeed:300,
                    animation:"slide",
                    animationInSpeed:200,
                    animationOutSpeed:200,
                    scrollText:"回到顶部",
                    activeOverlay:false
                }
            <!--覆盖默认值-->
            var defaults=$.extend(defaults,options);
            
            
            var sn="#"+defaults.scrollName,
                td=defaults.topDistance,
                ts=defaults.topSpeed,
                an=defaults.animation,
                is=defaults.animationInSpeed,
                os=defaults.animationOutSpeed,
                st=defaults.scrollText,
                ao=defaults.activeOverlay;
            
            
            
            /*添加a标签和样式*/
             $("<a/>",{id:defaults.scrollName,title:st,text:st,herf:"#top"}).appendTo("body");
            // $(sn).css({"position":"fixed","display":"none","z-index":"123456789"});
            
            
            if(ao){
                $("body").append("<div id=‘"+defaults.scrollName+"-active‘></div>" );
                $(sn+"-active").css({"position":"absolute","top":td+"px","width":"100%","border-top":"1px dotted "+ao,"z-index":"2147483647"})
            }
            
            /*滚动事件*/
            $(window).scroll(function(){
                if(an==="fade")
                    $($(window).scrollTop()>td?$(sn).fadeIn(is):$(sn).fadeOut(os));
                else if(an==="slide")
                    $($(window).scrollTop()>td?$(sn).slideDown(is):$(sn).slideUp(os));
                else
                    $($(window).scrollTop()>td?$(sn).show():$(sn).hide());
            });
            
            /*点击*/
            $(sn).click(function(event){
                $("html, body").animate({scrollTop:0},ts);
                return false
            })
            
        }
    })
})(jQuery);




==================html页面引入使用=========================

$.myScrollUp({
        scrollName:"scrollUp",
        topDistance:"300",
        topSpeed:300,
        animation:"slide",
        animationInSpeed:200,
        animationOutSpeed:200,
        scrollText:"回到顶部",
        activeOverlay:true
    });

JS 回到顶部插件

标签:js 回到顶部插件

原文地址:http://xuliangjun.blog.51cto.com/7398089/1790720

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!