1. #1
    Sencha User
    Join Date
    Mar 2012
    Location
    Tunisia
    Posts
    74
    Vote Rating
    0
    zied jouini is on a distinguished road

      0  

    Default 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:
    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

  2. #2
    Sencha - Senior Forum Manager mitchellsimoens's Avatar
    Join Date
    Mar 2007
    Location
    St. Louis, MO
    Posts
    33,682
    Vote Rating
    435
    Answers
    3111
    mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of

      0  

    Default


    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.

  3. #3
    Sencha User
    Join Date
    Jun 2011
    Location
    Quebec, Canada
    Posts
    8
    Vote Rating
    0
    Bassem is on a distinguished road

      0  

    Default 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

Tags for this Thread