gpt4 book ai didi

javascript - 从 offsetX 值中获取数值

转载 作者:行者123 更新时间:2023-11-29 23:11:57 26 4
gpt4 key购买 nike

所以我正在尝试求解一个涉及鼠标点击/触摸 Action 和移动交互的方程式。工作起来很像 slider ,但它会使动画逐帧运行,这就是为什么我只需要数字。

<html>
<header>
<!-- By the way, this is not the actual html file, just a generic example. -->
<style>
#box{
border:1px solid red;
height:500px;
width:500px;
}
</style>
</header>
<body>
<div id="box" onclick="posInicial()" onmousemove="posMove()"></div>
<div id="Z" ></div>

<script>
function posInicial() {
var posX = event.offsetX;
return posX;
};

function posMove() {
var posY = event.offsetX;
return posY;
};

var z = posY - posX;

document.getElementById("Z").innerHTML = z;
</script>
</body>
</html>

每当我编写下面的代码时,我都可以在 HTML 中实时显示和更新数字,但我需要动画帧控件的“减号”操作中的实际值

function posInicial() {
var posX = event.offsetX;
document.getElementById("Z").innerHTML = posX;
};

有人能救救我吗?

最佳答案

关于javascript - 从 offsetX 值中获取数值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53733058/

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