/ Published in: Other
Expand |
Embed | Plain Text
/*--- Animation - Transition ---*/ /* Safari */ {-webkit-transition: all .2s ease-in-out;} {-webkit-transform: scale(0.98); -moz-transform: scale(0.98);} {-webkit-transition-property: background, border; -webkit-transition-duration: 2s, 1s; -webkit-transition-timing-function: linear, ease-in-out;} /* -moz */ {-moz-transition: all 0.2s ease-in-out;} {-moz-transition: opacity 500ms ease 0s;} /* opera */ -o-transition: background-color 0s ease 0s; -o-transition: all 1s ease 0s; /* Once Specification is approved */ transition: all 1s ease 0s; transition: background-color 0s ease 0s; /* IE */ {filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);}
You need to login to post a comment.
