gpt4 book ai didi

javascript - 为什么我生成的图像没有根据我的鼠标光标设置它们的位置?

转载 作者:太空宇宙 更新时间:2023-11-03 22:28:17 25 4
gpt4 key购买 nike

我是网络开发的新手,我想练习一下我在周末学到的 HTML、CSS 和 Javascript。我无法根据鼠标光标正确定位图像。我可以看到我的图像被附加到谷歌浏览器的“检查”部分,但它们的位置与样式指示的方式不匹配。我的 HTML、CSS 或 Javascript 或三者都有问题吗?我希望它的工作方式类似于 http://howlooongcanthisgoon.com/ 1 [ example ] 2

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>My Jaws that Bite My Claws That Catch</title>
<style>
*{
padding: 0;
margin: 0;
}

#witchwood{
background: url("witchwood.jpg");
height: 100vh;
background-position: 75% 20%;
overflow: hidden;
}

.shudder{
position: absolute;
}


</style>


</head>
<body>
<div id="witchwood" onclick="wok(event)"></div>
</body>
<script type="text/javascript">
//document.getElementById('witchwood').addEventListener("click", wok);
var z = 0;
function wok(e){
//finds position of mouse
var x= e.clientX;
var y= e.clientY;

//creates the img element
var img = document.createElement("img");
img.src = "shudderwock.png";
img.class = "shudder";
img.style.top = y + "px";
img.style.left = x + "px";

//appends the img into the div class="witchwood"
document.getElementById('witchwood').appendChild(img);

}

</script>

</html>

这是 jsfiddle 的链接.

最佳答案

您的.shudder 类没有被应用。相应的 DOM 属性称为 className。您没有使用 img.class 设置 HTMLElement 属性。

改变

img.class = "shudder";

img.className = "shudder";

或者,您可以使用;

img.setAttribute('class', 'shudder');

关于javascript - 为什么我生成的图像没有根据我的鼠标光标设置它们的位置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49992015/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com