一次滚一屏

//demo

<style>
    html,body {height:100%;}
    body {margin:0px;}
    div {height:100%;}
</style>
<body>
    <div style="background:red;"></div>
    <div style="background:yellow;"></div>
    <div style="background:orange;"></div>
</body>
<script>

addEventListener("DOMContentLoaded",function(){
    var body=document.body,html=document.documentElement;
    var itv,height=document.body.offsetHeight;
    //var page=scrollTop()/height|0;//取整
    var page=parseInt(scrollTop()/height);
    

    //窗口大小改变事件
    addEventListener("resize",onresize)//,onresize();
    
    //滚轮事件
    document.body.addEventListener("onwheel" in document?"wheel":"mousewheel",
        function(e){
            clearTimeout(itv);
            itv=setTimeout(function(){
                var delta=e.wheelDelta/120||-e.deltaY/3;
                page-=delta;
                var max=(document.body.scrollHeight/height|0)-1;
                if(page<0)return page=0;
                if(page>max)return page=max;
                move();
            },100);
            e.preventDefault();
        }
    );
    //平滑滚动
    function move(){
        var value=height*page;
        var diff=scrollTop()-value;
        (function callee(){
        diff=diff/1.2|0;
        scrollTop(value+diff);
        if(diff)itv=setTimeout(callee,16);
        })();
    };
    //resize事件
    function onresize(){
        height=body.offsetHeight;
        move();
    };
    //获取或设置scrollTop
    function scrollTop(v){
        if(v==null)return Math.max(body.scrollTop,html.scrollTop);
        else body.scrollTop=html.scrollTop=v;
    };
});
</script>

 

转载于:https://www.cnblogs.com/hangsarea/p/6896591.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值