国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JavaScript > 正文

基于JavaScript實現(xiàn)窗口拖動效果

2019-11-19 17:52:29
字體:
供稿:網(wǎng)友

寫法類似于上一篇,水平進度條拖拽,具體內(nèi)容如下

<!DOCTYPE html><html lang="en"><head>  <meta charset="UTF-8">  <title>Document</title>  <style>    *{      margin: 0;      padding: 0;    }    .nav{      width: 100%;      height: 20px;      background-color: #ccc;    }    .popup{      width: 300px;      height: 300px;      border: 1px solid red;      position: absolute;      left: 50%;      top: 50%;      margin-left: -150px;      margin-top: -150px;    }    .popup .title{      height: 20px;      width: 100%;      background: deeppink;      cursor: move;    }  </style>  </head><body>  <div class="nav">注冊信息</div>  <div class="popup" id="popupfather">    <div class="title" id="popupson">我是窗口標(biāo)題,可拖著我走</div>    <div class="content">我是窗口內(nèi)容</div>  </div>  <script>      var popupfather = document.getElementById('popupfather');    var popupson = document.getElementById('popupson');    popupson.onmousedown = function(event){      var event = event || window.event;      var that = this;      var x = event.clientX - popupfather.offsetLeft - 150; //當(dāng)前鼠標(biāo)點擊處相對于popupfather所在位置x , -150 是處理margin值      var y = event.clientY - popupfather.offsetTop - 150; //當(dāng)前鼠標(biāo)點擊處相對于popupfather所在位置y      document.onmousemove = function(event){        var event = event || window.event;        popupfather.style.left = event.clientX - x + "px";        popupfather.style.top = event.clientY- y + "px";        window.getSelection ? window.getSelection().removeAllRanges() : document.selection.empty();      }    }    document.onmouseup = function(){      document.onmousemove = null;    }  </script></body></html> 

效果圖:

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持武林網(wǎng)。

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 东安县| 绩溪县| 道真| 北流市| 孟州市| 万年县| 高清| 新巴尔虎左旗| 什邡市| 司法| 长治县| 彭泽县| 罗甸县| 赤峰市| 上犹县| 江达县| 米易县| 夏邑县| 伊通| 桑植县| 封丘县| 江津市| 綦江县| 巴青县| 襄垣县| 土默特左旗| 广南县| 博客| 北宁市| 轮台县| 雅江县| 晋宁县| 滕州市| 青海省| 攀枝花市| 蚌埠市| 舞阳县| 石泉县| 盐池县| 平潭县| 汉川市|