JS实现滚轮放大缩小浮动元素

 

目录

         一、需求:

二、纯JS实现滚轮放大缩小:

三、html代码

拖动例子:https://blog.csdn.net/corleone_4ever/article/details/104320904


一、需求:

1.实现鼠标拖动

2.实现滚轮放大缩小

3.实现最大化,最小化

二、纯JS实现滚轮放大缩小:

 三、html代码

<!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>

拖动例子:https://blog.csdn.net/corleone_4ever/article/details/104320904

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值