Advertisement
yoneth

Ceaser CSS transition for foodist element

Apr 27th, 2016
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. -webkit-transition: all 900ms cubic-bezier(0.375, 0.000, 0.365, 1); /* older webkit */
  2. -webkit-transition: all 900ms cubic-bezier(0.375, 0.000, 0.365, 1.005);
  3. -moz-transition: all 900ms cubic-bezier(0.375, 0.000, 0.365, 1.005);
  4. -o-transition: all 900ms cubic-bezier(0.375, 0.000, 0.365, 1.005);
  5. transition: all 900ms cubic-bezier(0.375, 0.000, 0.365, 1.005); /* custom */
  6.  
  7. -webkit-transition-timing-function: cubic-bezier(0.375, 0.000, 0.365, 1); /* older webkit */
  8. -webkit-transition-timing-function: cubic-bezier(0.375, 0.000, 0.365, 1.005);
  9. -moz-transition-timing-function: cubic-bezier(0.375, 0.000, 0.365, 1.005);
  10. -o-transition-timing-function: cubic-bezier(0.375, 0.000, 0.365, 1.005);
  11. transition-timing-function: cubic-bezier(0.375, 0.000, 0.365, 1.005); /* custom */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement