我有画布
function Update(){
if(score >= 10 && score < 30){
//begin growing and shrinking canvas
}else if(score >= 30 && score < 50){
//While still growing and shrinking start rotating canvas slowly clockwise
}else if(score >= 50){
//Stop all other animations and begin flipping canvas like a cube
}
}
一旦用户在游戏中获得一定的分数,我想不断缩小和增长画布
$('#notice').on('click', function(){
var $this = $(this);
if ($this.hasClass('open')) {
$this.animate({
bottom : '95%'
}, 500).removeClass('open');
Game.Notice.notice1.opened = 1;
} else {
$this.animate({
bottom : '70%'
}, 500).addClass('open');
}
});
我知道缩小和增长画布可以完成以及可能旋转不起作用最后一个我不介意使用jquery因为我使用此代码动画一个通知进出onclick所以类似的代码是可以接受的< / p>
val