扫码关注官方订阅号
诸如小米手机的展示页面小米手机展示页
闭关修行中......
jsvar MouseWheelHandler = function(e) { e.preventDefault(); e = window.event || e; //do something here } /* refer to fullpage.js github: https://github.com/alvarotrigo/fullPage.js */ var addMouseWheelHandler = function() { document.addEventListener("mousewheel", MouseWheelHandler, false); //IE9, Chrome, Safari, Oper } addMouseWheelHandler();
js
var MouseWheelHandler = function(e) { e.preventDefault(); e = window.event || e; //do something here } /* refer to fullpage.js github: https://github.com/alvarotrigo/fullPage.js */ var addMouseWheelHandler = function() { document.addEventListener("mousewheel", MouseWheelHandler, false); //IE9, Chrome, Safari, Oper } addMouseWheelHandler();
这是参考fullpage.js写的 简单来说就是添加鼠标滚轮滚动事件
鼠标滚轮滚动事件
监听mousewhell事件就可以了,小米用的jquery.mousewhell插件
微信扫码关注PHP中文网服务号
QQ扫码加入技术交流群
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
PHP学习
技术支持
返回顶部
这是参考fullpage.js写的
简单来说就是添加
鼠标滚轮滚动事件监听mousewhell事件就可以了,小米用的jquery.mousewhell插件
