最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Achieving a bounce effect on text using jquery animate()? - Stack Overflow

programmeradmin1浏览0评论

I am trying to use Jquery to create a bounce effect, this is what i have so far:

Html:

<div id ="animation">bounce</div>

Jquery:

$("#animation").animate({ marginTop: "80px" }, 1500 )
               .animate({ marginBottom: "40px" }, 800 );

Its goes downwards but not upwards, i tried searching the documentation, but it doesn't

working example here: /

I am trying to use Jquery to create a bounce effect, this is what i have so far:

Html:

<div id ="animation">bounce</div>

Jquery:

$("#animation").animate({ marginTop: "80px" }, 1500 )
               .animate({ marginBottom: "40px" }, 800 );

Its goes downwards but not upwards, i tried searching the documentation, but it doesn't

working example here: http://jsfiddle/zLw8F/

Share Improve this question edited Apr 1, 2017 at 12:54 Cœur 38.8k26 gold badges205 silver badges277 bronze badges asked Jul 26, 2012 at 15:06 user1551482user1551482 5294 gold badges9 silver badges16 bronze badges 1
  • Hi, just wanted to drop this link: jQuery.fx.interval. Could not post my answer before you deleted your other question. Maybe you can tweak it a little. However, I think jQuery optimizes the animations quite well (using native features where available etc.). Try to avoid running too many animations at the same time. – Wolfram Commented Jul 27, 2012 at 15:16
Add a ment  | 

3 Answers 3

Reset to default 7

To go upwards again, you'd need to reduce the margin-top instead of animating margin-bottom:

$("#animation").animate({ marginTop: "80px" }, 1500 )
               .animate({ marginTop: "40px" }, 800 );

Demo at jsfiddle

Yet, to animate the element decoupled from the rest of the page, I remend relative positioning instead of playing with margins.

Why not just use the jQuery UI effects? Ex:

$("#animation").effect("bounce", { times:3 }, 300);​

jsFiddle example

Try that:

$("#animation").animate({ marginTop: "80px" }, 1500, function() {
  $(this).animate({ marginTop: "40px" }, 800 );
});
发布评论

评论列表(0)

  1. 暂无评论