Last active
April 14, 2020 09:52
-
-
Save niceaji/f5762a97e55e13f5f24e22c338ce702b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="ko"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>Document</title> | |
</head> | |
<body> | |
<div id="box"> | |
Drag me! | |
</div> | |
<ol> | |
<li>박스를 누르면 드래그가 시작됩니다 (mousedown 이벤트)</li> | |
<li> | |
마우스가 눌린 상태로 마우스를 움직이면 박스가 마우스 커서를 따라 | |
움직입니다 (mousemove 이벤트) | |
</li> | |
<li>클릭을 해제하면 드래그가 멈춥니다 (mouseup 이벤트)</li> | |
</ol> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment