点击没有jQuery UI的jQuery Bounce Effect

时间:2012-04-28 12:55:25

标签: javascript jquery html animation bounce

我无法使用jQuery动画找到动画解决方案来进行div反弹。类似的东西不起作用:

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

我不想使用jQuery UI或任何外部插件,例如缓动插件。在我的情况下,摆动效果会一样好,所以要么会这样做。

这是example,任何帮助都将非常感谢!提前致谢

5 个答案:

答案 0 :(得分:22)

你可以简单地在元素上链接一些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/

答案 1 :(得分:4)

使用此功能进行阻尼反弹。如果使用代码而不做更改,请务必为bouncing元素指定一个唯一的类。

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>

答案 2 :(得分:1)

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

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

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

答案 3 :(得分: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"
 })
}

答案 4 :(得分: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/