鼠标滚动事件mousewheel(DOMMouseScroll)
滚轮事件只有firefox比较特殊,使用DOMMouseScroll; 其他浏览器使用mousewheel;1.mousewheel事件中的 “event.wheelDelta”属性值:返回的值,如果是正值说明滚轮是向上滚动,如果是负值说明滚轮是向下滚动;返回的值,均为 120 的倍数,即:幅度大小 = 返回的值 / 120。 2. DOMMouseScroll事件中的 “even