简体   繁体   中英

convert do cubic-bezier to rtl

I'm a traying convert Css cubic-bezier to RTL

I have this code:

-webkit-transition: -webkit-transform .2s cubic-bezier(.16, .68, .43, .99);
-moz-transition: -moz-transform .2s cubic-bezier(.16, .68, .43, .99);
-o-transition: -o-transform .2s cubic-bezier(.16, .68, .43, .99);
 transition: transform .2s cubic-bezier(.16, .68, .43, .99);

This is my try:

-webkit-transition: -webkit-transform -.2s cubic-bezier(.16, .68, .43, .99);
-moz-transition: -moz-transform -.2s cubic-bezier(.16, .68, .43, .99);
-o-transition: -o-transform -.2s cubic-bezier(.16, .68, .43, .99);
 transition: transform -.2s cubic-bezier(.16, .68, .43, .99);

any help?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM