本文介绍: vue实现拖动调整左右两侧div宽度(左右拖拽)

 

一、HTML代码

<template>
    <div class=”boxref=”box“>
        <div class=”left“>
            <!–左侧div内容–>
        </div>
        <div class=”resizetitle=”收缩侧边栏“>
            ⋮
        </div>
        <div class=”mid“>
            <!–右侧div内容–>
        </div>
    </div>
</template>

二、CSS代码

  /* 拖拽相关样式 */
    /*包围div样式*/
    .box {
        width: 100%;
        height: 100%;
        margin: 1% 0px;
        overflow: hidden;
        boxshadow: -1px 9px 10px 3px rgba(0, 0, 0, 0.11);
    }
    /*左侧div样式*/
    .left {
        width: calc(32% – 10px);  /*左侧初始化宽度*/   
        height: 100%;
        background: #FFFFFF;
        float: left;
    }
    /*拖拽div样式*/
    .resize {
        cursor: colresize;
        float: left;
        position: relative;
        top: 45%;
        backgroundcolor: #d6d6d6;
        borderradius: 5px;
        margin-top: -10px;
        width: 10px;
        height: 50px;
        backgroundsize: cover;
        backgroundposition: center;
        /*z-index: 99999;*/
        fontsize: 32px;
        color: white;
    }
    /*拖拽鼠标悬停样式*/
    .resize:hover {
        color: #444444;
    }
    /*右侧div‘样式*/
    .mid {
        float: left;
        width: 68%;   /*右侧初始化宽度*/
        height: 100%;
        background: #fff;
        boxshadow: -1px 4px 5px 3px rgba(0, 0, 0, 0.11);
    }

三、JS代码

以下代码放置methods方法

dragControllerDiv () {
                var resize = document.getElementsByClassName(‘resize‘);
                var left = document.getElementsByClassName(‘left‘);
                var mid = document.getElementsByClassName(‘mid‘);
                var box = document.getElementsByClassName(‘box’);
                for (let i = 0; i < resize.length; i++) {
                    // 鼠标按下事件
                    resize[i].onmousedown = function (e) {
                        //颜色改变提醒
                        resize[i].style.background = ‘#818181’;
                        var startX = e.clientX;
                        resize[i].left = resize[i].offsetLeft;
                        // 鼠标拖动事件
                        document.onmousemove = function (e) {
                            var endX = e.clientX;
                            var moveLen = resize[i].left + (endX – startX); // (endx-startx)=移动距离resize[i].left+移动距离=左边区域最后宽度
                            var maxT = box[i].clientWidthresize[i].offsetWidth; // 容器宽度左边区域宽度 = 右边区域的宽度

                            if (moveLen < 32) moveLen = 32; // 左边区域的最小宽度为32px
                            if (moveLen > maxT – 150) moveLen = maxT – 150; //右边区域最小宽度为150px

                            resize[i].style.left = moveLen; // 设置左侧区域的宽度

                            for (let j = 0; j < left.length; j++) {
                                left[j].style.width = moveLen + ‘px’;
                                mid[j].style.width = (box[i].clientWidth – moveLen – 10) + ‘px’;
                            }
                        };
                        // 鼠标松开事件
                        document.onmouseup = function (evt) {
                            //颜色恢复
                            resize[i].style.background = ‘#d6d6d6′;
                            document.onmousemove = null;
                            document.onmouseup = null;
                            resize[i].releaseCapture &amp;&amp; resize[i].releaseCapture(); //当你不在需要继续获得鼠标消息就要应该调用ReleaseCapture()释放掉
                        };
                        resize[i].setCapture &amp;&amp; resize[i].setCapture(); //该函数属于当前线程指定窗口设置鼠标捕获
                        return false;
                    };
                }
            }

四、调用

mouted中初始化加载

this.dragControllerDiv();

如有左侧或右侧元素使用iframe的话,则需:

iframe标签之前添加<div class=”iframeDiv”></div>

例如

<div class=”iframeDiv”></div> <iframe id=”iFrame1″ name=”iFrame1″ width=”100%” height=”100%” frameborder=”0″ scrolling=”auto” :src=”iframeUrl“> </iframe>

添加CSS样式

.iframeDiv {

width: 100%; height: 100%; position: absolute; z-index: 1111; filter: alpha(opacity=0); opacity: 0; background: transparent; margin-top: 30px; }

添加鼠标的按下事件和松开事件

<div class=”resize” ref=”resize” @mousedown=”changeIframeDivStyle(‘block‘)”” @οnmοuseup=”changeIframeDivStyle(‘none‘)” > </div>

注:@οnmοuseup=”changeIframeDivStyle(‘none‘)” 放在根元素

添加方法

changeIframeDivStyle(display) {

var iframeDiv = document.getElementsByClassName(‘iframeDiv’);

iframeDiv[0].style.display = display;

}

设置页面初始化加载

this.changeIframeDivStyle(‘none’);

详细文章可看vue中实现拖动调整左右两侧div的宽度_Sun_Gem的博客-CSDN博客_vue拖拽div边框调整大小

原文地址:https://blog.csdn.net/weixin_43832782/article/details/128936033

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任

如若转载,请注明出处:http://www.7code.cn/show_40388.html

如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱suwngjj01@126.com进行投诉反馈,一经查实,立即删除

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注