GlobalEventHandlers.onmousedown - Web APIs 编辑
The onmousedown
property of the GlobalEventHandlers
mixin is an EventHandler
that processes mousedown
events.
The mousedown
event fires when the user depresses the mouse button.
Note: The opposite of onmousedown
is onmouseup
.
Syntax
target.onmousedown = functionRef;
Value
functionRef
is a function name or a function expression. The function receives a MouseEvent
object as its sole argument.
Example
This example reveals part of an image when you press and hold a mouse button. It uses the onmousedown
, onmouseup
, and onmousemove
event handlers.
HTML
<div class="container">
<div class="view" hidden></div>
<img src="https://interactive-examples.mdn.mozilla.net/media/examples/gecko-320-213.jpg">
</div>
CSS
.container {
width: 320px;
height: 213px;
background: black;
}
.view {
position: absolute;
width: 100px;
height: 100px;
background: white;
border-radius: 50%;
}
img {
mix-blend-mode: darken;
}
JavaScript
function showView(event) {
view.removeAttribute('hidden');
view.style.left = event.clientX - 50 + 'px';
view.style.top = event.clientY - 50 + 'px';
event.preventDefault();
}
function moveView(event) {
view.style.left = event.clientX - 50 + 'px';
view.style.top = event.clientY - 50 + 'px';
}
function hideView(event) {
view.setAttribute('hidden', '');
}
const container = document.querySelector('.container');
const view = document.querySelector('.view');
container.onmousedown = showView;
container.onmousemove = moveView;
document.onmouseup = hideView;
Result
Specifications
Specification | Status | Comment |
---|---|---|
HTML Living Standard The definition of 'onmousedown' in that specification. | Living Standard |
Browser compatibility
BCD tables only load in the browser
See also
mousedown
event
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论