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知识库]控制图片缩放移动

鼠标滚轮缩放图片,双指移动缩放图片
鼠标移动拖动图片,单指移动拖动图片

Vue.component('imgControler', {
    props:{
      imgsrc: String
    },
    data: () => {
        return {
            isWin: isWin,
            imgscale: 3,
            imgLeft: 0,
            imgTop: 0,

            mOnDown: false,
            mLastPosition: {x:0,y:0},

            touchFirst: true,
            isTwoTouch: false,
            touchTwoFirst: true,
            touchLastDistance: 0,
            tLastPositon: {x:0,y:0},
        }
    },
    template: `
    <div class="img-c" 
        style='width:100%;height:100%;display:flex;justify-content:center;align-items:center;' 
        @mousedown.prevent='Down' 
        @mousemove.prevent='Move' 
        @mouseup.prevent='Up' 
        @touchmove.prevent='Move' 
        @touchend.prevent='Up'
        >
        <img :src='imgsrc' :style='{transform:"translate(" + imgLeft + "px," + imgTop +  "px)" + " scale(" + imgscale + ")"}'></img>
    </div>
    `,
    methods:{
        Down(e){
            this.mOnDown = true;
            this.mLastPosition.x = e.pageX;
            this.mLastPosition.y = e.pageY;
        },
        Move(e){
            if (isWin) {
                if (this.mOnDown) {
                    let currX = e.pageX,
                    currY = e.pageY;
                    let deltaX = currX - this.mLastPosition.x, deltaY = currY - this.mLastPosition.y;
                    this.imgLeft += deltaX;
                    this.imgTop += deltaY;
                    this.mLastPosition.x = currX;
                    this.mLastPosition.y = currY;
                }       
            } else {
                let touches = e.changedTouches;
                if (touches.length === 1) {
                    if (this.isTwoTouch) {
                        return;
                    }
                    if (this.touchFirst) {
                        this.tLastPositon.x = touches[0].pageX;
                        this.tLastPositon.y = touches[0].pageY;
                        this.touchFirst = false;
                    } else {
                        let deltaX = touches[0].pageX - this.tLastPositon.x;
                        let deltaY = touches[0].pageY - this.tLastPositon.y;
                        this.imgLeft += deltaY;
                        this.imgTop -= deltaX;
                        this.tLastPositon.x = touches[0].pageX;
                        this.tLastPositon.y = touches[0].pageY;
                    }
                } else if (touches.length === 2) {
                    this.isTwoTouch = true;
                    let t1 = { 
                        x: touches[0].pageX,
                        y: touches[0].pageY
                    }, 
                    t2 = {
                        x: touches[1].pageX,
                        y: touches[1].pageY
                    };
                    if (this.touchTwoFirst) {
                        this.touchLastDistance = this.calDistance(t1, t2);
                        this.touchTwoFirst = false;
                    } else {
                        let currDistance = this.calDistance(t1, t2);
                        let factor = 0.1 * (currDistance - this.touchLastDistance);
                        this.setScale(factor);
                        touchLastDistance = currDistance;
                    }
                }
                
            }
                
        },
        calDistance(a, b) {
            return Math.sqrt(Math.pow(a.x - b.x, 2) + Math.pow(a.y - b.y, 2));
        }, 
        Up(e){
            this.mOnDown = false;
            this.touchFirst = true;
            this.touchTwoFirst = true;
            this.isTwoTouch = false;
            Object.assign(this.mLastPosition, {x: 0,y: 0});
            this.touchLastDistance = 0;
        },
        setScale(delta){
            let imgscale = this.imgscale;
            imgscale += delta / 10;
            this.imgscale = imgscale < 0.2 ? 0.2 : (imgscale > 6 ? 6 : imgscale);
        }
    },
    created(){
    },
    mounted(){
        let self = this;
        if (window.addEventListener)//FF,火狐浏览器会识别该方法
        window.addEventListener('DOMMouseScroll', wheel, false);
        window.onmousewheel = document.onmousewheel = wheel;//W3C
        //统一处理滚轮滚动事件
        function wheel(event){
            var delta = 0;
            if (!event) event = window.event;
            if (event.wheelDelta) {//IE、chrome浏览器使用的是wheelDelta,并且值为“正负120”
                delta = event.wheelDelta/120; 
                if (window.opera) delta = -delta;//因为IE、chrome等向下滚动是负值,FF是正值,为了处理一致性,在此取反处理
            } else if (event.detail) {//FF浏览器使用的是detail,其值为“正负3”
                delta = -event.detail/3;
            }
            if (delta)
                self.setScale(delta);
        }
    },
    updated(){
        // console.log('updated');
    }
})
  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:24:19 
 
开发: 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:29:21-

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