我目前正在创建一个简单的游戏,用户尽可能快地点击一个按钮,并且当用户点击进度条应该向用户显示进度时,唯一的问题是动画非常不稳定......无论如何平滑动画?
这是JSFIDDLE
和javascript:
jQuery(document).ready(function(e) {
var $counter = $('#counter');
var $button = $('#lemon-button');
var count = 2;
var speed = 70;
//test for ie7 an ie8
if (!$.support.leadingWhitespace) {
var countAddStep = 5;
//test for ie7 an ie8
}else{
var countAddStep = 3;
}
var timeout;
func = function () {
count--;
$counter.text(count);
if(count <= 4) {
jQuery('.bar').height(400);
}
if(count >= 5) {
jQuery('.bar').height(350);
}
if(count > 6) {
jQuery('.bar').height(300);
}
if(count > 8) {
jQuery('.bar').height(200);
}
if(count > 12) {
jQuery('.bar').height(100);
}
if(count > 14) {
jQuery('.bar').height(20);
}
if(count > 15) {
jQuery('.bar').height(0);
alert("finish");
}
if(count !== 0) {
timeout = setTimeout(func, speed);
}
};
$button.on('click', function() {
count = count+countAddStep;
$counter.text(count);
if (count === countAddStep) {
count++;
func();
}
});
func();
});
非常感谢任何帮助...