• jQuery屏蔽浏览器的滚动事件,定义自己的滚轮事件


    1.首先应用jQuery库 ,不做详细介绍

    2引用jQuery的mousewheel库,这里面是这个库的源码,使用时直接拷贝过去就可以了:

    (function(a){
    function d(b){
    var c=b||window.event,d=[].slice.call(arguments,1),e=0,f=!0,g=0,h=0;
    return b=a.event.fix(c),b.type="mousewheel",c.wheelDelta&&(e=c.wheelDelta/120),
    c.detail&&(e=-c.detail/3),h=e,c.axis!==undefined&&c.axis===c.HORIZONTAL_AXIS&&(h=0,g=-1*e),
    c.wheelDeltaY!==undefined&&(h=c.wheelDeltaY/120),c.wheelDeltaX!==undefined&&(g=-1*c.wheelDeltaX/120),
    d.unshift(b,e,g,h),(a.event.dispatch||a.event.handle).apply(this,d)}var b=["DOMMouseScroll","mousewheel"];
    if
    (a.event.fixHooks)
    for(var c=b.length;c;)a.event.fixHooks[b[--c]]=a.event.mouseHooks;
    a.event.special.mousewheel={setup:function(){
    if(this.addEventListener)
    for(var a=b.length;a;)
    this.addEventListener(b[--a],d,!1);
    else this.onmousewheel=d},teardown:function(){
    if(this.removeEventListener)
    for(var a=b.length;a;)
    this.removeEventListener(b[--a],d,!1);
    else this.onmousewheel=null}},a.fn.extend({mousewheel:function(a){
    return a?this.bind("mousewheel",a):this.trigger("mousewheel")},unmousewheel:function(a){return this.unbind("mousewheel",a)}})})(jQuery)

    3下面是我们调用mousewheel中的方法

    1 $('.gys').mousewheel(function (event, t) { //t表示滚动的方向       
    2   if (t> 0) {
    3    $(this).css('backgroundColor', 'red');
    4   } else {
    5    $(this).css('backgroundColor', 'blue'); 
    6   }
    7   return false;               //return false即可
    8  }); 

    4.html代码:

    1 <h1 style="100%; border:1px solid red;" class="gys">鼠标放到这个地方,前后滚动观察效果</h1>
  • 相关阅读:
    python全栈开发day20-类的三大特性继承、多态、封装
    python全栈开发day19-面向对象初识
    python全栈开发day21-2 几个装饰器总结
    python全栈开发day16-正则表达式和re模块
    python全栈开发day15-递归函数、二分查找
    python运算符优先级
    动手动脑4
    动手动脑3
    查询对象个数
    动手动脑2
  • 原文地址:https://www.cnblogs.com/guoyansi19900907/p/3426487.html
Copyright © 2020-2023  润新知