回到顶部(封装版)

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
     <style type="text/css">
        *{margin:0;padding:0;}
        body{
            position:relative;
        }
        body p{
            position:absolute;
            bottom:0;
            left:100px;
            font-size: 20px;
        }
        #go_up{
            position:fixed;
            bottom:0;
            right:0;
            width: 100px;
            height: 100px;
            background:#ccc;
            line-height: 100px;
            text-align: center;
            cursor:pointer;
            display:none;

        }

     </style>
</head>
<body style="height:2500px;">
    <p>有志者事竟成,礼拜放假星期天</p>
    <div id="go_up">返回顶部</div>
    <script src="tween.js"></script>
    <script>
    //总函数
    // function goUp(){
    //  var goBtn=document.getElementById('go_up');
    //  var timer=null;
    //  // 判断函数,如果离开顶部,那么显示div,否则隐藏
    //  function topFn(){
    //      var top=document.body.scrollTop||document.documentElement.scrollTop;
    //      top>0?goBtn.style.display="block":goBtn.style.display="none";
    //  }
    //  //将事件规划到一块
    //  function bind(){
    //      //滚动事件
    //      window.onscroll=function(){
    //          topFn();
    //      }
    //      // 点击事件
    //      goBtn.onclick=function(){
    //          //调用回到顶部方法
    //          goFn();
    //      }
    //  }

    // 总函数,用于完成某个功能
        function goUp(){
            // 获取元素
            var goBtn = document.getElementById("go_up");

            // 全局变量 timer
            var timer = null;

            // 判断函数,如果离开顶部,那么显示div元素,否则隐藏
            function topFn(){
                var top = document.body.scrollTop || document.documentElement.scrollTop;
                top > 0 ? goBtn.style.display = "block" : goBtn.style.display = "none";
            }

            // 将事件规划到一块
            function bind(){
                // 滚动事件
                window.onscroll = function(){
                    topFn();
                }

                // 点击事件
                goBtn.onclick = function(){
                    // 调用回到顶部方法
                    goFn();
                }
            }


        //实现回到顶部方法
        // function  goFn(){
        //  // document.body.scrollTop=0;
        //  // document.documentElement.scrollTop=0;
        //      var nowTop=document.body.scrollTop||document.documentElement.scrollTop;

        //      var t=0;

        //      var b=nowTop;

        //      var c=0-nowTop;

        //      var d=50;
        //  //循环定时器
        //   timer=setInterval(function(){
        //      // 将开始步数自增
        //      t++;
        //      //判断开始步数是否大于等于总步数
        //      if(t>=d){
        //          //清除定时器
        //          clearInterval(timer);
        //          // 将timer置为null(保险起见)
        //          timer=null;
        //      }
        //      //赋值
        //      //如果是其他浏览器(不是谷歌),那么条件为真
        //      if(document.documentElement.scrollTop){
        //          document.documentElement.scrollTop=Tween.Bounce.easeOut(t,b,c,d);
        //      }else{
        //          document.body.scrollTop=Tween.Bounce.easeOut(t,b,c,d);
        //      }
        //   },30);

        // }
        // 实现回到顶部方法
            function goFn(){
                var nowTop = document.body.scrollTop || document.documentElement.scrollTop;
                // 开始步数
                var t = 0;
                // 起始值
                var b = nowTop;
                // 变化量
                var c = 0 - nowTop;
                // 总步数
                var d = 50;

                // 循环定时
                timer = setInterval(function(){
                    // 1.将开始步数自增
                    t++;
                    // 2.判断开始步数是否大于等于总步数
                    if (t >= d) {
                        // 清除定时器
                        clearInterval(timer);
                        // 将timer置为null(保险起见)
                        timer = null;
                    }
                    // 3.赋值
                    // 如果是其他浏览器(不是谷歌),那么条件为真
                    if (document.documentElement.scrollTop) {
                        // 然后赋值
                        document.documentElement.scrollTop = Tween.Bounce.easeOut(t,b,c,d);
                    }else{
                        document.body.scrollTop = Tween.Bounce.easeOut(t,b,c,d);
                    }
                },30);
            }
        //初始化
        function init(){
            bind();
        }
            init();
    }
    goUp();
    </script>
</body>
</html>

js部分

// JavaScript Document
var Tween = {//对象
    Linear: function(t,b,c,d){ return c*t/d + b; },
    Quad: {
        easeIn: function(t,b,c,d){
            return c*(t/=d)*t + b;
        },
        easeOut: function(t,b,c,d){
            return -c *(t/=d)*(t-2) + b;
        },
        easeInOut: function(t,b,c,d){
            if ((t/=d/2) < 1) return c/2*t*t + b;
            return -c/2 * ((--t)*(t-2) - 1) + b;
        }
    },
    Cubic: {
        easeIn: function(t,b,c,d){
            return c*(t/=d)*t*t + b;
        },
        easeOut: function(t,b,c,d){
            return c*((t=t/d-1)*t*t + 1) + b;
        },
        easeInOut: function(t,b,c,d){
            if ((t/=d/2) < 1) return c/2*t*t*t + b;
            return c/2*((t-=2)*t*t + 2) + b;
        }
    },
    Quart: {
        easeIn: function(t,b,c,d){
            return c*(t/=d)*t*t*t + b;
        },
        easeOut: function(t,b,c,d){
            return -c * ((t=t/d-1)*t*t*t - 1) + b;
        },
        easeInOut: function(t,b,c,d){
            if ((t/=d/2) < 1) return c/2*t*t*t*t + b;
            return -c/2 * ((t-=2)*t*t*t - 2) + b;
        }
    },
    Quint: {
        easeIn: function(t,b,c,d){
            return c*(t/=d)*t*t*t*t + b;
        },
        easeOut: function(t,b,c,d){
            return c*((t=t/d-1)*t*t*t*t + 1) + b;
        },
        easeInOut: function(t,b,c,d){
            if ((t/=d/2) < 1) return c/2*t*t*t*t*t + b;
            return c/2*((t-=2)*t*t*t*t + 2) + b;
        }
    },
    Sine: {
        easeIn: function(t,b,c,d){
            return -c * Math.cos(t/d * (Math.PI/2)) + c + b;
        },
        easeOut: function(t,b,c,d){
            return c * Math.sin(t/d * (Math.PI/2)) + b;
        },
        easeInOut: function(t,b,c,d){
            return -c/2 * (Math.cos(Math.PI*t/d) - 1) + b;
        }
    },
    Expo: {
        easeIn: function(t,b,c,d){
            return (t==0) ? b : c * Math.pow(2, 10 * (t/d - 1)) + b;
        },
        easeOut: function(t,b,c,d){
            return (t==d) ? b+c : c * (-Math.pow(2, -10 * t/d) + 1) + b;
        },
        easeInOut: function(t,b,c,d){
            if (t==0) return b;
            if (t==d) return b+c;
            if ((t/=d/2) < 1) return c/2 * Math.pow(2, 10 * (t - 1)) + b;
            return c/2 * (-Math.pow(2, -10 * --t) + 2) + b;
        }
    },
    Circ: {
        easeIn: function(t,b,c,d){
            return -c * (Math.sqrt(1 - (t/=d)*t) - 1) + b;
        },
        easeOut: function(t,b,c,d){
            return c * Math.sqrt(1 - (t=t/d-1)*t) + b;
        },
        easeInOut: function(t,b,c,d){
            if ((t/=d/2) < 1) return -c/2 * (Math.sqrt(1 - t*t) - 1) + b;
            return c/2 * (Math.sqrt(1 - (t-=2)*t) + 1) + b;
        }
    },
    Elastic: {
        easeIn: function(t,b,c,d,a,p){
            if (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;
            if (!a || a < Math.abs(c)) { a=c; var s=p/4; }
            else var s = p/(2*Math.PI) * Math.asin (c/a);
            return -(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
        },
        easeOut: function(t,b,c,d,a,p){
            if (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;
            if (!a || a < Math.abs(c)) { a=c; var s=p/4; }
            else var s = p/(2*Math.PI) * Math.asin (c/a);
            return (a*Math.pow(2,-10*t) * Math.sin( (t*d-s)*(2*Math.PI)/p ) + c + b);
        },
        easeInOut: function(t,b,c,d,a,p){
            if (t==0) return b;  if ((t/=d/2)==2) return b+c;  if (!p) p=d*(.3*1.5);
            if (!a || a < Math.abs(c)) { a=c; var s=p/4; }
            else var s = p/(2*Math.PI) * Math.asin (c/a);
            if (t < 1) return -.5*(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
            return a*Math.pow(2,-10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )*.5 + c + b;
        }
    },
    Back: {
        easeIn: function(t,b,c,d,s){
            if (s == undefined) s = 1.70158;
            return c*(t/=d)*t*((s+1)*t - s) + b;
        },
        easeOut: function(t,b,c,d,s){
            if (s == undefined) s = 1.70158;
            return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b;
        },
        easeInOut: function(t,b,c,d,s){
            if (s == undefined) s = 1.70158; 
            if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b;
            return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b;
        }
    },
    Bounce: {
        easeIn: function(t,b,c,d){
            return c - Tween.Bounce.easeOut(d-t, 0, c, d) + b;
        },
        easeOut: function(t,b,c,d){
            if ((t/=d) < (1/2.75)) {
                return c*(7.5625*t*t) + b;
            } else if (t < (2/2.75)) {
                return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b;
            } else if (t < (2.5/2.75)) {
                return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b;
            } else {
                return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b;
            }
        },
        easeInOut: function(t,b,c,d){
            if (t < d/2) return Tween.Bounce.easeIn(t*2, 0, c, d) * .5 + b;
            else return Tween.Bounce.easeOut(t*2-d, 0, c, d) * .5 + c*.5 + b;
        }
    }
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 199,711评论 5 468
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 83,932评论 2 376
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 146,770评论 0 330
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 53,799评论 1 271
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 62,697评论 5 359
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,069评论 1 276
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,535评论 3 390
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,200评论 0 254
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,353评论 1 294
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,290评论 2 317
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,331评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,020评论 3 315
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,610评论 3 303
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,694评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 30,927评论 1 255
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,330评论 2 346
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 41,904评论 2 341

推荐阅读更多精彩内容

  • JavaScript 资源大全中文版很多程序员应该记得 GitHub 上有一个 Awesome - XXX 系列的...
    wwmin_阅读 3,397评论 1 92
  • 学习ReactNative有一段时间了,也加了好多群,看见群里每天那么多人在那儿讨论和学习ReactNative,...
    光无影阅读 7,397评论 28 41
  • 今天业务 需求中 增加一个回到顶部的小组件。那我们直接进入正题。 1.最快的 方法就是在页面顶部加一个a 标签,使...
    Asterwen阅读 845评论 0 2
  • 自己最近几年的工作成长,很大程度上是靠自己摸索,感觉也有了一些进步,但实际上还是有不少的问题。首先自己会有思维的局...
    美好君阅读 334评论 0 0
  • 不要着急,迟到的,也许是最好的 不要犹豫,决绝的,也许是最对的 不要怀疑,开始的,也许是最后的
    奋青儿阅读 162评论 0 0