我可以将endValue用作百分比吗?
Pages.Page1.ImageButton1.animate({
...
endValue : 30,
...
});
什么是endValue类型?像素?那么,我如何使用百分比?我尝试了30%或30%,但没有工作。
答案 0 :(得分:1)
以完整的示例代码为例;
Pages.Page1.ImageButton1.animate({
property : 'Y',
endValue : '30%',
motionEase : SMF.UI.MotionEase.plain,
duration : 3000,
onFinish : function () {
//do your action after finishing the animation
}
});
答案 1 :(得分:0)
您可以将其用作字符串:
Pages.Page1.ImageButton1.animate({
...
endValue : "100%",
...
});