- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试创建一个可移动元素的类,我得到了两个 this.functions
,我的 clique
函数对于该类的每个子元素都运行良好,但我的与 mousemove
事件相关的 maousemauve
仅适用于最后创建的对象。
我认为问题来自于 document.onmousemove = this.maousemauve
声明,它不包含 this.
语句,但我没有找到该怎么做否则,是否有可能用类构造函数做我想做的事情,或者我是否以错误的方式寻求?
//déclaration de classe, entre parenthéses, les paramètres "inconnus"qui me permettront de définir rapidement mes futurs objets!
class Domino {
constructor(id, side1, side2, c) {
this.id = id;
this.side1 = side1;
this.side2 = side2;
this.lien = document.getElementById(id);
this.c = c;
this.clique = (event) => {
this.c += 1;
this.lien.style.position = 'absolute';
if (this.c === 2) {
this.c = 0;
console.log(this);
return this.c;
}
console.log(this.c);
return this.c;
}
this.maousemauve = (event) => {
if (this.c === 1) {
console.log(this.c);
this.lien.style.left = event.clientX - 50 + 'px';
this.lien.style.top = event.clientY - 30 + 'px';
}
}
this.lien.onclick = this.clique;
this.lien.onmousemove = this.maousemauve;
}
}
var d1 = new Domino("d1", 0, 1, 0);
var d2 = new Domino("d2", 0, 1, 0);
var d3 = new Domino("d3", 0, 1, 0);
console.log(d1);
console.log(d2);
console.log(d3);
body {
width: 1000px;
height: 800px;
}
/*j'utilise les propriétés flex pour aligner les mots au centre dans mes dominos!*/
#d1 {
width: 100px;
height: 60px;
background-color: black;
color: white;
display: flex;
justify-content: center;
align-items: center;
}
#d2 {
width: 100px;
height: 60px;
background-color: black;
color: white;
display: flex;
justify-content: center;
align-items: center;
}
#d3 {
width: 100px;
height: 60px;
background-color: black;
color: white;
display: flex;
justify-content: center;
align-items: center;
}
<body>
<br /><br />
<div id="d1"> d1 </div>
<div id="d2"> d2 </div>
<div id="d3"> d3 </div>
</body>
最佳答案
我在您的评论中读到,您显然自己找到了解决方案......但效果不佳。
这里有一些提示:
Element#addEventListener()
而不是用于设置事件的 Element#onXXX
属性。Domino#isMoving
),该属性将允许您了解元素当前是否正在移动。 (也许 Domino#c
就是您代码中的那个,但我不确定。)click
事件将反转 isMoving
值。然后,如果 isMoving === true
,它将添加一个 mousemove
事件,否则将删除它。该事件需要附加到文档
,否则您的问题:“如果我快速移动光标,多米诺骨牌将不会跟随光标”将不会出现已更正。查看那个简化的示例:
class Domino {
constructor(id) {
this.id = id;
this.lien = document.getElementById(id);
// Allows to know if the domino is moving or not.
this.isMoving = false;
this.lien.addEventListener('click', (e) => {
this.listenOnClick(e);
});
}
listenOnClick(e) {
const handleMouseMove = (e) => {
this.listenOnMouseMove(e);
};
this.lien.style.position = 'absolute';
// If not moving, it is moving...
// Or if it's moving, it's not moving!
this.isMoving = !this.isMoving;
// If it's moving, add an event listener on the document when the mouse is moving
if (this.isMoving) {
// Attachs the listener on document, because the mouse is *always* on the document. So even if the mouse is outside the domino, it will move.
document.addEventListener('mousemove', handleMouseMove);
} // Or if it's not, remove that event.
else {
document.removeEventListener('mousemove', handleMouseMove);
}
}
listenOnMouseMove(e) {
if (this.isMoving) {
this.lien.style.left = e.clientX - 50 + 'px';
this.lien.style.top = e.clientY - 30 + 'px';
}
}
}
let d1 = new Domino('d1');
d2 = new Domino('d2');
body {
width: 1000px;
height: 800px;
}
.domino {
width: 100px;
height: 60px;
background-color: black;
color: white;
display: flex;
justify-content: center;
align-items: center;
}
<body>
<div id="d1" class="domino">d1</div>
<div id="d2" class="domino">d2</div>
</body>
关于javascript - document.onmousemove 仅由我的 js 类的最后创建的对象处理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54310385/
我正在尝试计算 iFrame 的高度,但不明白为什么 document.body.offsetHeight + document.body.bottomMargin 不等于 document.docu
我正在使用 Node/Mongoose/MongoDB 并尝试构建一个轮询应用程序。一个关键需求是跟踪单个用户对同一民意调查的响应如何随时间变化(他们一遍又一遍地进行同一民意调查)。 我有一个用户模型
首先,我不是普通的博主,我很困惑。如果我的问题不符合要求,请指导我。我会努力改进的。 我已提交 Microsoft Code Review 的 Microsoft CRM 插件。我是 JavaScri
谁能解释为什么使用类似的东西: gci -force "\\computername\c$\users\username\Documents" -recurse 或者 gci -force "\\co
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, over
这个问题已经有答案了: What is the (function() { } )() construct in JavaScript? (28 个回答) 已关闭 6 年前。 说实话,一开始我以为我可
document.getElementsByTagName("*") 适用于 IE/Firefox/Opera,但不适用于 Chrome 和 Safari。 document.all 适用于 IE/C
这个问题在这里已经有了答案: What is the difference between Document and document in JavaScript? (2 个答案) 关闭 8 年前。
我以某种方式发现将事件监听器添加到文档的行为有点奇怪。虽然向 HTMLElements 添加监听器工作正常,但向文档添加监听器不起作用。但奇怪的是,使用 jQuery 可以让它工作。 那么有人可以解释
谁能告诉我这两个 JavaScript 命令之间的区别? 这两个跨主要浏览器的兼容性是什么?我知道 documentElement 与大多数浏览器兼容。 谢谢 最佳答案 document.docume
什么时候应该使用 document.all 与 document.getElementById? 最佳答案 document.all 是 Microsoft 对 W3C 标准的专有扩展。 getEle
当升级到 react-native 0.61.2 时,这个问题出现了。我做到了从手机中删除了 apk 和自动链接使用 react-native link 然后 react-native run-and
当升级到 react-native 0.61.2 时,这个问题出现了。我做到了从手机中删除了 apk 和自动链接使用 react-native link 然后 react-native run-and
我将收到 tungstenite::Message ,它将包含来自客户端的bson文档。我可以将tungstenite::Message转换为Vec,但是如何在服务器端将其转换回 bson::docu
我这里有一个简单的疑问: 文档对象范围位于浏览器选项卡内:我的意思是如果我设置document.tab1 ='tab1' 在一个浏览器选项卡中 它在其他选项卡中不可用。 但是 document.coo
我经常使用并看到推荐的 dom 访问结构,例如这样动态地将内容添加到页面: loader = document.createElement('script'); loader.src = "myurl
我对 JQuery 还很陌生。我正在使用this JQuery 函数在元素上显示工具提示。 我根据我的需要(在这个社区的帮助下)以这种方式编辑了代码: $(document).ready(functi
我想知道哪个是运行js代码的正确方法,该代码根据窗口高度计算垂直菜单的高度并按时设置,不晚不早。 我正在使用 document.ready 但它并没有真正帮助我解决这个问题,它有时没有设置,我必须重新
我正在浏览一个 js 文件并发现这个声明var dataobj=document.all? document.all.id_name : document.getElementById("id_nam
想知道何时使用,这适用于什么浏览器? if (document.all&&document.getElementById) { // Some code block } 最佳答案 我认为没有任何重要的
我是一名优秀的程序员,十分优秀!