function animate() {
requestAnimFrame( animate )
//添加旋转效果
bunny.rotation += 0.1
//添加缩放效果
if(bunny.scale.x>=1){
scaleflag = 1
}else if(bunny.scale.x<=0.5){
scaleflag = 0
}
scaleflag?bunny.scale.x -= 0.05: bunny.scale.x +=0.05
scaleflag?bunny.scale.y -= 0.2: bunny.scale.y +=0.2
renderer.render(stage)
}