div 达到特定 PX 时触发事件

发布于 2024-11-16 09:42:18 字数 745 浏览 0 评论 0原文

您好,如果可以的话,请看一下我的代码,并告诉我下一步要做什么才能得到这个结果。

<script type="text/javascript">
     function doMove1() {
      foo1.style.left = parseInt(foo1.style.left)+1+'px';
      setTimeout(doMove1,20); // call doMove in 20msec
    }
    function start1() {
      foo1 = document.getElementById('fooObject'); // get the "foo" object
      foo1.style.left = '0px'; // set its initial position to 0px
      doMove1(); // start animating
    }
window.onload = start1;
</script>
<body>
        <div id="fooObject"> 
    <img src="images/pac.gif" width="38" height="38"></div> 
</body>

基本上发生的事情是图像在屏幕上移动。我想要完成的是,当图像达到某个像素(比方说 900px)时,我希望触发一个事件。有关完成此任务的任何提示我是初学者,在我想到寻求帮助之前我已经为此工作了一整天。

Hi If could please take a look at my code and tell me what the next step I am looking for to get this result.

<script type="text/javascript">
     function doMove1() {
      foo1.style.left = parseInt(foo1.style.left)+1+'px';
      setTimeout(doMove1,20); // call doMove in 20msec
    }
    function start1() {
      foo1 = document.getElementById('fooObject'); // get the "foo" object
      foo1.style.left = '0px'; // set its initial position to 0px
      doMove1(); // start animating
    }
window.onload = start1;
</script>
<body>
        <div id="fooObject"> 
    <img src="images/pac.gif" width="38" height="38"></div> 
</body>

Basically what happens is that a image moves across the screen.What i am trying to accomplish is that when the image gets to a certain px (Lets say 900px) I want an event to fire. Any tips on accomplishing this task I am a beginner Ive been working on this all day before i thought to seek help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

挽你眉间 2024-11-23 09:42:18

只需在 doMove1 中添加对此的检查:

function doMove1() {
  var left = parseInt(foo1.style.left, 10) + 1;
  if (left >= 900) {
    trigger_my_event();
  } else {
    foo1.style.left = left + 'px';
    setTimeout(doMove1,20); // call doMove in 20msec
  }
}

这有帮助吗?

Just add a check for this in doMove1:

function doMove1() {
  var left = parseInt(foo1.style.left, 10) + 1;
  if (left >= 900) {
    trigger_my_event();
  } else {
    foo1.style.left = left + 'px';
    setTimeout(doMove1,20); // call doMove in 20msec
  }
}

Does that help?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文