我如何将 jQuery 的 UI Bounce 功能添加到这个脚本中?该脚本当前将进度条滑出到设定位置。我希望当它到达该位置时,它会来回弹跳几次然后休息。
我尝试了一些以前的堆栈溢出答案,但没有一个有效。
$(function () {
$(".meter .bar").each(function () {
$(this)
.data("origWidth", $(this).width())
.width(0)
.animate({
width: $(this).data("origWidth")
}, 900);
});
});