🐬 Wapmaster share code hay
🐬 Wapmaster Dat007
D
A
T
0
0
7
K
Í
N
H
C
H
Ú
C
C
Á
C
B
Ạ
N
T
H
À
N
H
C
Ô
N
G
T
R
O
N
G
C
Ô
N
G
V
I
Ệ
C
☰▶
✈ Ảnh nền
✈ Nhạc chuông
✈ Icon đẹp
✈ Chửa bệnh
✈ Xem Phim
✈ ký tự đẹp
✈ Câu đố hay
✈ Truyện ma
✈ Xoay Ảnh
✈ Wapmaster
×
CÁC TIỆN ÍCH
✔ Nhạc nền cho wap/web
✔ Bố cục Chia 2,3,4 cột
✔ Tạo nhận xét cho blogspot
✔ Lớp phủ điều hướng
✔ Thanh trượt
✔ Menu trượt bên trái
✔ DIV kéo thả
✔ Hiệu ứng xoay ảnh
✔ Hiệu ứng ảnh
✔ Hiệu ứng chử chạy
✔ Code thường dùng
✔ Auto nội dung
✔ Chống copy
✔ Hiệu ứng chuột
✔ Chạy thử Code
✔ Chạy thử mã hóa Code
✔ Lốp Menu
✔ Code tổng hợp
✔ Ẩn hiện nội dung
✔ Tràn văn bản
✔ Khung cho blogger
✔ Bo tròn góc
✔ Auto Wap/Web wapego
✔ Auto Wap/Web xtgem
✔ Đưa website lên google
✔ Css tooltip
✔ 4 Nút Sidenav
✔ Icon đẹp
✔ Mã màu css
✔ Tìm hiểu CSS
✔ Mã màu CSS
✔ Css 1
✔ Css 2
✔ Css 3
✔ Css 4
✔ Css 5
✔ Css 6
✔ Css 7
✔ Ký tự đặc biệt
DIV có thể kéo được
Thành phần DIV có thể kéo được
Làm thế nào để - Tạo một thành phần HTML có thể kéo được
Nhấp vào đây để di chuyển
Di chuyển
điều này
<style> #mydiv { position: absolute; z-index: 9; background-color: #f1f1f1; text-align: center; border: 1px solid #d3d3d3; } #mydivheader { padding: 10px; cursor: move; z-index: 10; background-color: #2196F3; color: #fff; } </style> <h1>Thành phần DIV có thể kéo được</h1> <p>Làm thế nào để - Tạo một thành phần HTML có thể kéo được</p> <div id="mydiv"> <div id="mydivheader">Nhấp vào đây để di chuyển</div> <p>Di chuyển</p> <p>điều này</p> </div> <script> //Make the DIV element draggagle: dragElement(document.getElementById(("mydiv"))); function dragElement(elmnt) { var pos1 = 0, pos2 = 0, pos3 = 0, pos4 = 0; if (document.getElementById(elmnt.id + "header")) { /* if present, the header is where you move the DIV from:*/ document.getElementById(elmnt.id + "header").onmousedown = dragMouseDown; } else { /* otherwise, move the DIV from anywhere inside the DIV:*/ elmnt.onmousedown = dragMouseDown; } function dragMouseDown(e) { e = e || window.event; // get the mouse cursor position at startup: pos3 = e.clientX; pos4 = e.clientY; document.onmouseup = closeDragElement; // call a function whenever the cursor moves: document.onmousemove = elementDrag; } function elementDrag(e) { e = e || window.event; // calculate the new cursor position: pos1 = pos3 - e.clientX; pos2 = pos4 - e.clientY; pos3 = e.clientX; pos4 = e.clientY; // set the element's new position: elmnt.style.top = (elmnt.offsetTop - pos2) + "px"; elmnt.style.left = (elmnt.offsetLeft - pos1) + "px"; } function closeDragElement() { /* stop moving when mouse button is released:*/ document.onmouseup = null; document.onmousemove = null; } } </script>
Trang chủ
Đăng ký:
Bài đăng (Atom)