javascript - endValue as Percentage Usage -
can use endvalue percentage?
pages.page1.imagebutton1.animate({ ... endvalue : 30, ... });
what type of endvalue? pixel? so, how can use percentage? tried %30 or 30% didn't work.
you can use string:
pages.page1.imagebutton1.animate({ ... endvalue : "100%", ... });
Comments
Post a Comment