通过一次单击事件导致多个元素向相反方向滑动

发布于 2024-10-20 07:41:22 字数 219 浏览 0 评论 0原文

我正在创建一个“介绍”页面,我想单击中间的一个按钮,这会导致两个 div 滑动,

顶部 div 向上滑动到视图之外,底部 div 向下滑动到视图之外 或者更好的是顶部 div 向上滑动并停在某个点,底部则停止 一个人也这样做。

如何才能实现这一目标?我环顾四周,我对 javascript 很陌生,所以 我只需要一个准确的例子。请不要只是说,使用 .bind() 方法! 因为我不明白如何实现

I have an 'intro' page that I am creating and I want to click a button in the middle which causes two divs to slide

the top div slides UP out of view and the bottom div slides DOWN out of view
or even better the top div Slides UP and stops at a certain point and the bottom
one does the same.

how could this be acheived? I've looked around and I'm very new to javascript so
I just need an accurate example. please dont just say, use the .bind() method!
because I wont understand how to implement that

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

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

发布评论

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

评论(1

月下凄凉 2024-10-27 07:41:22

使用动画功能:

$(document).ready(function(){
   $('#yourButtonId').click(function(){
      $('#yourTopDivId').animate({
          //css properties - specify new position with css
          top: '0px',
          left: '20px'
      },5000  // animation will run for 5 seconds
      ,function(){
       // what should happen when it's done goes here
       });
   });
   $('#yourButtonId').click(function(){
      $('#yourBottomDivId').animate({
          //css properties - specify new position with css
          bottom: '0px',
          left: '20px'
      },5000  // animation will run for 5 seconds
      ,function(){
       // what should happen when it's done goes here
       });
   });
});

我还没有测试过它,但它应该可以工作。

//编辑
我现在已经测试过了。这是链接:http://jsfiddle.net/ZCh9x/

Use animate function:

$(document).ready(function(){
   $('#yourButtonId').click(function(){
      $('#yourTopDivId').animate({
          //css properties - specify new position with css
          top: '0px',
          left: '20px'
      },5000  // animation will run for 5 seconds
      ,function(){
       // what should happen when it's done goes here
       });
   });
   $('#yourButtonId').click(function(){
      $('#yourBottomDivId').animate({
          //css properties - specify new position with css
          bottom: '0px',
          left: '20px'
      },5000  // animation will run for 5 seconds
      ,function(){
       // what should happen when it's done goes here
       });
   });
});

I haven't tested it but it should work.

//edit
I have tested it now. Here is the link: http://jsfiddle.net/ZCh9x/

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