-
3 Oct 2012 1:40 AM #1
Unanswered: CSS 3 in sencha touch
Unanswered: 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:and it's work but when i want to do translationCode:-webkit-transform:translateX(0px) rotate(360deg);
it's not work.Code:-webkit-transition: all 2s ease-in-out;
thank you
-
9 Oct 2012 7:14 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,641
- Vote Rating
- 434
- Answers
- 3107
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.
Mitchell Simoens @SenchaMitch
Sencha Inc, Senior Forum Manager
________________
http://www.JSONPLint.com - Source to lint your JSONP!
Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
https://github.com/mitchellsimoens
Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/
Need more help with your app? Hire Sencha Services services@sencha.com
Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!
When posting code, please use BBCode's CODE tags.
-
24 Oct 2012 11:02 AM #3
Yes it Works !!
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


Reply With Quote