IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> JavaScript知识库 -> 简单的代码实现拖拽拉伸尺寸 -> 正文阅读

[JavaScript知识库]简单的代码实现拖拽拉伸尺寸

?

目录

代码:

?

效果:


代码:

<div class="box">
            <i class="tl"></i>
            <i class="tr"></i>
            <i class="bl"></i>
            <i class="br"></i>
        </div>
<script> 
 function Box(el) {
            this.el = el
            let that = this
            let dirs = {
                tl: {ox: 1,oy: 1,x: -1,y: -1},
                tr: {ox: 0,oy: 1,x: 1,y: -1},
                bl: {ox: 1,oy: 0,x: -1,y: 1},
                br: {ox: 0,oy: 0,x: 1,y: 1}
            }
            let startX = null, startY = null, left = 0, top = 0, w = 0, h = 0
            let action = '', _w, _h, _l, _t, ox, oy, curDir
            function move(e) {
                if (startX == null) {
                    startX = e.pageX
                    startY = e.pageY
                    return
                }
                let offsetX = e.pageX - startX
                let offsetY = e.pageY - startY
                if (action == 'resize') {
                    let sx = 1 + curDir.x * offsetX / w
                    let sy = 1 + curDir.y * offsetY / h
                    ox = curDir.ox * w + left
                    oy = curDir.oy * h + top
                    ox-=ox*sx
                    oy-=oy*sy
                    let px = sx * left + ox
                    let py = sy * top + oy
                    let px2 = sx * (left + w) + ox
                    let py2 = sy * (top+h) + oy

                    _w = px2 - px
                    _h = py2 - py
                    _l = px
                    _t = py
                    if (_w > 1e-2 && _h > 1e-2) {
                        that.el.style.width = _w + 'px'
                        that.el.style.height = _h + 'px'
                        that.el.style.left = _l + 'px'
                        that.el.style.top = _t + 'px'
                    }
                } else {
                    that.el.style.left = (offsetX + left) + 'px'
                    that.el.style.top = (offsetY + top) + 'px'
                }
            }
            function up(e) {
                startX = null
                startY = null
                document.body.style.cursor = ''
                document.removeEventListener('mousemove', move, false)
                document.removeEventListener('mouseup', up, false)
            }
            this.el.addEventListener('mousedown', (e) => {
                e.preventDefault();
                let rect = that.el.getBoundingClientRect()
                left = rect.left
                top = rect.top
                w = rect.width
                h = rect.height
                let target = e.target
                if (target.nodeType == 1 && target.closest('i')) {
                    action = 'resize'
                    document.body.style.cursor = window.getComputedStyle(target).cursor
                    curDir = dirs[target.className]
                } else {
                    action = 'move'
                    document.body.style.cursor = 'move'
                }
                document.addEventListener('mousemove', move, false)
                document.addEventListener('mouseup', up, false)
            })
        }
        new Box(document.querySelector('.box'))
</script>
<style>
 .box {
            border: solid 1 #000;
            height: 100px;
            width: 100px;
            position: absolute;
            border: solid 1px #000;
        }

        .box>i {
            position: absolute;
            border: solid 1px #000;
            height: 10px;
            width: 10px;
            transform: translate(-50%, -50%);
            background-color: transparent;
        }

        .tl {

            top: 0;
            left: 0;
            cursor: se-resize;
        }

        .tr {

            top: 0;
            left: 100%;
            cursor: sw-resize;
        }

        .bl {

            top: 100%;
            left: 0;
            cursor: ne-resize;
        }

        .br {
            top: 100%;
            left: 100%;
            cursor: nw-resize;
        }
</style>   

?

效果:

?

  JavaScript知识库 最新文章
ES6的相关知识点
react 函数式组件 & react其他一些总结
Vue基础超详细
前端JS也可以连点成线(Vue中运用 AntVG6)
Vue事件处理的基本使用
Vue后台项目的记录 (一)
前后端分离vue跨域,devServer配置proxy代理
TypeScript
初识vuex
vue项目安装包指令收集
上一篇文章      下一篇文章      查看所有文章
加:2022-03-15 22:23:40  更:2022-03-15 22:26:45 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 6:43:14-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码