鼠标滚轮事件实现整屏滚动

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了鼠标滚轮事件实现整屏滚动相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<style>
  *{
    margin:0;
    padding:0;
  }
  html,body{
    width:100%;
    height:100%;
    position:relative;
    overflow:hidden;

  }
  .box{
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
  }
  .box .ul-star{
    width:100%;
    height:100%;
  }
</style>
</head>
<body>
  <div id="box" class="box" index =‘0‘>
    <div class="ul-star" style="background:red"></div>
    <div class="ul-star" style="background:green"></div>
    <div class="ul-star" style="background:grey"></div>
    <div class="ul-star" style="background:blue"></div>
  </div>
</body>
<script src="js/jquery.js"></script>
<script>
  $("#box").on("mousewheel",function(ev){
    var hhs = ev.originalEvent.wheelDelta;
    var fangx = hhs >0?1:0;//向下为负值
    var index = $("#box").attr("index");
    var maxpage = $("#box div").size()-1;
    if(fangx){//1,top为负值往下
      if(--index<0){
        return
      }
    }
    else{
      if(++index > maxpage){
        return
      }
    }
    if(!$(this).is(":animated")){
      $("#box").animate({top:"-"+index+"00%"},300)
      $("#box").attr("index",index)
    }
  })
</script>
</html>

以上是关于鼠标滚轮事件实现整屏滚动的主要内容,如果未能解决你的问题,请参考以下文章

JS如何判断鼠标滚轮事件分析

jQ中鼠标滚轮事件事件吗

鼠标滚轮事件

html 禁用鼠标滚轮对网页滚动条的控制怎么实现?

Qt中隐藏滚动条重新实现鼠标滚轮事件wheelEvent

vb如何监视鼠标滚轮事件