利用原生JS实现图片的拖拽与缩放

复制代码就可以使用了

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>Document</title>
  <style>
      #box {
          width: 100px;
          height: 100px;
          background-color: aquamarine;
          position: absolute;
      }
      #father {
        width: 600px;
        height: 500px;
        background-color: rgb(226, 117, 184);
        position: relative;
      }
      img {
        width: 100%;
        height: 100%;
        cursor: move;
      }
      #scale { 
        width: 10px; 
        height: 10px; 
        overflow: hidden; 
        cursor: se-resize; 
        position: absolute; 
        right: 0; 
        bottom: 0; 
        background-color: rgb(122, 191, 238); 
      }
  </style>

</head>
<body>
    <div id="father">
      <div id="box">
        <img src="https://fuss10.elemecdn.com/e/5d/4a731a90594a4af544c0c25941171jpeg.jpeg"/>
        <div id="scale"></div>
      </div>
    </div>
    <script type="text/javascript">
    // box是装图片的容器,fa是图片移动缩放的范围,scale是控制缩放的小图标
        var box = document.getElementById("box");
        var fa = document.getElementById('father');
        var scale = document.getElementById("scale");
        // 图片移动效果
        box.onmousedown=function(ev) {
            var oEvent = ev; 
            // 浏览器有一些图片的默认事件,这里要阻止
            oEvent.preventDefault();
            var disX = oEvent.clientX - box.offsetLeft;
            var disY = oEvent.clientY - box.offsetTop;
            fa.onmousemove=function (ev) {
                oEvent = ev;
                oEvent.preventDefault();
                var x = oEvent.clientX -disX;
                var y = oEvent.clientY -disY;

                // 图形移动的边界判断
                x = x <= 0 ? 0 : x;
                x = x >= fa.offsetWidth-box.offsetWidth ? fa.offsetWidth-box.offsetWidth : x;
                y = y <= 0 ? 0 : y;
                y = y >= fa.offsetHeight-box.offsetHeight ? fa.offsetHeight-box.offsetHeight : y;
                box.style.left = x + 'px';
                box.style.top = y + 'px';
            }
            // 图形移出父盒子取消移动事件,防止移动过快触发鼠标移出事件,导致鼠标弹起事件失效
            fa.onmouseleave = function () {
              fa.onmousemove=null;
              fa.onmouseup=null;
            }
            // 鼠标弹起后停止移动
            fa.onmouseup=function() {
               fa.onmousemove=null;
               fa.onmouseup=null;
            } 
        }
        // 图片缩放效果
        scale.onmousedown = function (e) {
          // 阻止冒泡,避免缩放时触发移动事件
          e.stopPropagation();
          e.preventDefault();
          var pos = {
            'w': box.offsetWidth,
            'h': box.offsetHeight,
            'x': e.clientX,
            'y': e.clientY
          };
          fa.onmousemove = function (ev) {
            ev.preventDefault();
            // 设置图片的最小缩放为30*30
            var w = Math.max(30, ev.clientX - pos.x + pos.w)
            var h = Math.max(30,ev.clientY - pos.y + pos.h)
            // console.log(w,h)

            // 设置图片的最大宽高
            w = w >= fa.offsetWidth-box.offsetLeft ? fa.offsetWidth-box.offsetLeft : w
            h = h >= fa.offsetHeight-box.offsetTop ? fa.offsetHeight-box.offsetTop : h
            box.style.width = w + 'px';
            box.style.height = h + 'px';
            // console.log(box.offsetWidth,box.offsetHeight)
          }
          fa.onmouseleave = function () {
            fa.onmousemove=null;
            fa.onmouseup=null;
          }
          fa.onmouseup=function() {
            fa.onmousemove=null;
            fa.onmouseup=null;
          } 
        }
        
    </script>
</body>
</html>

缩放有很多种的方法可以通过控制transform样式修改

1.通过鼠标滚动控制图片的缩放

// 鼠标滚动事件
img.onwheel = function (event) {
     // console.log(event.wheelDelta);
     event.stopPropagation();
     event.preventDefault();
     if (event.wheelDelta > 0) {
         indexs = (indexs * 1 + 0.1).toFixed(1);
         img.style.transform = `scale(${indexs})`;
     } else {
         if (indexs == 0.5) {
             indexs = 0.5;
             img.style.transform = `scale(${indexs})`
         } else {
             indexs = (indexs - 0.1).toFixed(1)
             img.style.transform = `scale(${indexs})`
         }
     }
 }

2.通过按钮控制图片的缩放

var btnmagnify = document.createElement('button');
btnmagnify.classList.add('btnmagnify', 'el-icon-zoom-in')
var indexs = 1;
var indexdeg = 0;
btnmagnify.onclick = function (e) {
    e.stopPropagation()
    indexs = (indexs*1 + 0.1).toFixed(1)
    img.style.transform = `scale(${indexs}) rotate(${indexdeg}deg)`;
}

var btnreduce = document.createElement('button');
btnreduce.classList.add('btnreduce', 'el-icon-zoom-out')
btnreduce.onclick = function (e) {
    e.stopPropagation();
    if (indexs == 0.5) {
        indexs = 0.5;
        img.style.transform = `scale(${indexs}) rotate(${indexdeg}deg)`;
    } else {
        indexs = (indexs - 0.1).toFixed(1)
        img.style.transform = `scale(${indexs}) rotate(${indexdeg}deg)`
    }
}
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

友情链接更多精彩内容