首页 > 其他 > 详细

拖动鼠标调整右侧显示区的宽度

时间:2018-03-24 11:19:50      阅读:225      评论:0      收藏:0      [点我收藏+]

1、右侧的区域

2、拖动的一条竖线

3、鼠标事件

4、结合原生js和jQuery

实现如下:

(1)css代码

 *{margin: 0;padding: 0;}
 .content{
   width: 100%;
   height: 500px;
   background: #CCCCCC;
 }
  .left{
     width: 60%;
     height: 500px;
     background: green;
  }
   #right-sidebar-log{
       position: absolute;
       right: 0;
       top: 0;
       width: 40%;
       height: 500px;
       background: red;
     }
   #linetoggle{
      position: absolute;
      left: 0;
      width: 2px;
      height: 500px;
      border-left: 2px solid #000000;
      cursor: e-resize;
    }

(2)HTML内容

<div class="content">
     <div class="left"></div> 
     <div id="right-sidebar-log">
          <div id="linetoggle"></div>
     </div>
</div>

(3)js实现

  function Se(id) {
        return document.getElementById(id)
    }
    window.onload = function() {
    var oBox =  Se("box"),
        oBottom = Se("right-sidebar-log"),
        oLine = Se("linetoggle");

        $("#linetoggle").on("mousedown",function (e) {
        var Cwide=$("#right-sidebar-log").width();
        var disX = (e || event).clientX;
        document.onmousemove = function(e) {
            var Cx=(e || event).clientX;
            var MoveX = disX - Cx;
            oBottom.style.width = Cwide + MoveX + "px";
            return false
        };
        document.onmouseup = function() {
            document.onmousemove = null;
            document.onmouseup = null;
        };
    });
   }

 (4)效果如下

拖动中间的竖线,右边的宽度会随之改变

 

拖动鼠标调整右侧显示区的宽度

原文:https://www.cnblogs.com/zjingjing/p/8637868.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!