Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

css transition cross browser

#amazing-element {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition:    all .3s ease-in-out;
    -o-transition:      all .3s ease-in-out;
    -ms-transition:     all .3s ease-in-out;
    transition:         all .3s ease-in-out;
}
 
PREVIOUS NEXT
Tagged: #css #transition #cross #browser
ADD COMMENT
Topic
Name
6+2 =