您好,登錄后才能下訂單哦!
寫法類似于上一篇,水平進(jìn)度條拖拽,具體內(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">注冊(cè)信息</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)點(diǎn)擊處相對(duì)于popupfather所在位置x , -150 是處理margin值 var y = event.clientY - popupfather.offsetTop - 150; //當(dāng)前鼠標(biāo)點(diǎn)擊處相對(duì)于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>
效果圖:
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。