-
CSS 3 in sencha touch
Helo everyone.
i would like to ask if it's possible to use CSS3 animation on sencha touch. Because i try this:
Code:
-webkit-transform:translateX(0px) rotate(360deg);
and it's work but when i want to do translation
Code:
-webkit-transition: all 2s ease-in-out;
it's not work.
thank you
-
CSS3 and ST are two different things. CSS3 is used to style element, ST is a JavaScript framework that creates HTML so yes it's possible for CSS3 to style HTML that is created by ST.
-
Yes it Works !!
Code:
-moz-transition: width 0.15s ease-out !important; -webkit-transition: width 0.15s ease-out !important;
transition: width 0.15s ease-out !important;
I do use transition this way and it works on sencha touch2 and 1