9

我找不到仅使用 jQuery 动画来制作 div 弹跳的动画解决方案。类似的东西不起作用:

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

我宁愿不使用 jQuery UI 或任何外部插件,例如缓动插件。在我的情况下,摆动效果同样好,所以两者都可以。

这是一个例子,任何帮助将不胜感激!提前致谢

4

5 回答 5

26

animate您可以简单地将元素上的一些调用链接在一起,如下所示:

$("#bounce").click(function() {
    doBounce($(this), 3, '10px', 300);   
});


function doBounce(element, times, distance, speed) {
    for(var i = 0; i < times; i++) {
        element.animate({marginTop: '-='+distance}, speed)
            .animate({marginTop: '+='+distance}, speed);
    }        
}

工作示例:http: //jsfiddle.net/Willyham/AY5aL/

于 2012-04-28T13:14:57.913 回答
4

将此功能用于阻尼反弹。如果使用代码而不做任何更改,请确保为弹跳元素提供唯一的类。

var getAttention = function(elementClass,initialDistance, times, damping) {
  for(var i=1; i<=times; i++){
      var an = Math.pow(-1,i)*initialDistance/(i*damping);
      $('.'+elementClass).animate({'top':an},100);
  }
  $('.'+elementClass).animate({'top':0},100);
}

$( "#bounce").click(function() {
	getAttention("bounce", 50, 10, 1.2);
});
#bounce {
    height:50px;
    width:50px;
    background:#f00;
    margin-top:50px;
    position:relative;
    border-radius: 50px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="bounce" class="bounce"></div>

于 2015-09-02T11:16:11.793 回答
1

我使用这个简单的插件jQuery-Shake来摇晃或反弹没有 jQuery-UI 的元素。

$('#elementToBounce').shake({direction: up, distance:10, speed: 75, times: 3})

小提琴:https ://jsfiddle.net/ek7swb6y/3/

于 2020-01-31T14:22:30.090 回答
0

对于垂直反弹,您可以尝试以下操作:

function bounce(element, distance, speed){
 var bounce_margin_top = $(element).css("margin-top")
 $(element).css("margin-top", "-="+distance)

 $(element).show().fadeIn(200).animate({
    "margin-top": bounce_margin_top
 }, {
     duration: speed,
     easing:   "easeOutBounce"
 })
}
于 2012-12-31T16:55:32.323 回答
0

我通常使用 jQuery 动画。对于您的具体问题,它可能如下所示:

的HTML:

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

CSS:

#bounce {
height:50px;
width:50px;
background:#333;
margin-top:50px;
position:relative;
}

最后,jQuery:

$( "#bounce" ).click(function() {
for (var i=1; i<=3; i++) {
$(this).animate({top: 30},"slow");
$(this).animate({top: 0},"slow");
     }
});

这是一个工作小提琴:http: //jsfiddle.net/5xz29fet/1/

于 2014-09-01T09:53:45.780 回答