滑动滚轮放大缩小
2018-06-24 00:20:51来源:未知 阅读 ()
<!doctype html> <html> <head> <meta charset="utf-8"> <title>标题</title> <meta name="keywords" content=""> <meta name="description" content=""> <style> *{margin:0; padding:0; list-style:none;} body{ height: 2000px; } #box{ width: 200px; height: 200px; background: green; } </style> </head> <body> <div id="box"></div> <script> var box=document.getElementById('box'); var str=window.navigator.userAgent.toLowerCase(); if (str.indexOf('firefox')!=-1) {//火狐浏览器 box.addEventListener('DOMMouseScroll',function (event){ // event.preventDefault();//阻止窗口默认的滚动事件 // console.log(event.detail);//前滚-3 if (event.detail<0) { console.log('前滚'); box.style.width=box.offsetWidth+20+'px'; box.style.height=box.offsetHeight+20+'px'; }; if (event.detail>0) { console.log('后滚'); box.style.width=box.offsetWidth-20+'px'; box.style.height=box.offsetHeight-20+'px'; }; return false;//阻止默认事件 },false); } else{//非火狐浏览器 box.onmousewheel=function (ev){ var e=ev||window.event; /*if (e.preventDefault) { e.preventDefault(); } else{ e.returnValue=false; };*/ // console.log(e); // console.log(e.wheelDelta);//前滚120 if (e.wheelDelta>0) { console.log('前滚'); box.style.width=box.offsetWidth+20+'px'; box.style.height=box.offsetHeight+20+'px'; }; if (e.wheelDelta<0) { console.log('后滚'); box.style.width=box.offsetWidth-20+'px'; box.style.height=box.offsetHeight-20+'px'; }; return false;//阻止默认事件 } }; </script> </body> </html>
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:网站的制作流程
下一篇:URL-统一资源定位器
- 改变input[type=range]的样式 动态滑动 2019-12-26
- H5中图片按照比例收缩,放大 2019-09-17
- css列表滑动防止被底部遮住和适配屏幕长一点的机型处理 2019-08-14
- css滑动门的介绍 2019-08-14
- HTML+CSS技术实现网页滑动门效果 2018-06-24
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash