<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<div id="box">
<div id="ball"></div>
</div>
</body>
</html>
body {
margin: 0;
}
#box {
margin: 20px;
width: 200px;
height: 300px;
border: 10px solid;
box-sizing: border-box;
position: relative;
}
#ball {
border: 2px solid blue;
width: 20px;
height: 20px;
border-radius: 10px;
background-color: red;
box-sizing: border-box;
position: absolute;
top: 0px;
left: 0px;
}
const box = document.getElementById('box');
const ball = document.getElementById('ball');
let dragging = false;
let currentX, currentY;
const maxLeft = box.clientWidth - ball.offsetWidth;
const maxTop = box.clientHeight - ball.offsetHeight;
console.dir(box)
ball.addEventListener('mousedown', (e) => {
// 记录坐标
dragging = true;
currentX = e.clientX;
currentY = e.clientY;
});
document.body.addEventListener('mousemove', (e) => {
if(dragging === false) return;
// 计算偏移
const deltaX = e.clientX - currentX;
const deltaY = e.clientY - currentY;
const currentLeft = parseFloat(ball.style.left || '0');
const currentTop = parseFloat(ball.style.top || '0');
let left = currentLeft + deltaX;
let top = currentTop + deltaY;
// 记录新坐标
currentX = e.clientX;
currentY = e.clientY;
// 边界处理
if(left > maxLeft) {
left = maxLeft;
} else if(left < 0) {
left = 0;
}
if(top > maxTop) {
top = maxTop;
} else if(top < 0) {
top = 0;
}
if(e.clientX < box.offsetLeft) {
currentX = box.offsetLeft;
} else if(e.clientX > box.offsetLeft + box.clientWidth + box.clientLeft) {
currentX = box.offsetLeft + box.clientWidth + box.clientLeft;
}
if(e.clientY < box.offsetTop) {
currentY = box.offsetTop;
} else if(e.clientY > box.offsetTop + box.clientHeight + box.clientTop) {
currentY = box.offsetTop + box.clientHeight + box.clientTop;
}
// 更改ball坐标
ball.style.left = left + 'px';
ball.style.top = top + 'px';
})
document.body.addEventListener('mouseup', () => {
// 停止移动和记录
dragging = false;
})
Output
300px
You can jump to the latest bin by adding /latest
to your URL
Keyboard Shortcuts
Shortcut | Action |
---|---|
ctrl + [num] | Toggle nth panel |
ctrl + 0 | Close focused panel |
ctrl + enter | Re-render output. If console visible: run JS in console |
Ctrl + l | Clear the console |
ctrl + / | Toggle comment on selected lines |
ctrl + ] | Indents selected lines |
ctrl + [ | Unindents selected lines |
tab | Code complete & Emmet expand |
ctrl + shift + L | Beautify code in active panel |
ctrl + s | Save & lock current Bin from further changes |
ctrl + shift + s | Open the share options |
ctrl + y | Archive Bin |
Complete list of JS Bin shortcuts |
JS Bin URLs
URL | Action |
---|---|
/ | Show the full rendered output. This content will update in real time as it's updated from the /edit url. |
/edit | Edit the current bin |
/watch | Follow a Code Casting session |
/embed | Create an embeddable version of the bin |
/latest | Load the very latest bin (/latest goes in place of the revision) |
/[username]/last | View the last edited bin for this user |
/[username]/last/edit | Edit the last edited bin for this user |
/[username]/last/watch | Follow the Code Casting session for the latest bin for this user |
/quiet | Remove analytics and edit button from rendered output |
.js | Load only the JavaScript for a bin |
.css | Load only the CSS for a bin |
Except for username prefixed urls, the url may start with http://jsbin.com/abc and the url fragments can be added to the url to view it differently. |