“Prefixos de transição CSS” Respostas de código

Prefixos de transição CSS

.example {
    -webkit-transition: background-color 500ms ease-out 1s;
    -moz-transition: background-color 500ms ease-out 1s;
    -o-transition: background-color 500ms ease-out 1s;
    transition: background-color 500ms ease-out 1s;
}

/* IE10 (the first stable version of IE to support transition)
does not require the -ms- prefix. */
Mohan Munna

Prefixos do navegador CSS

Android: -webkit-
Chrome: -webkit-
Firefox: -moz-
Internet Explorer: -ms-
iOS: -webkit-
Opera: -o-
Safari: -webkit-
Carnivorous Flamingo

Respostas semelhantes a “Prefixos de transição CSS”

Perguntas semelhantes a “Prefixos de transição CSS”

Mais respostas relacionadas para “Prefixos de transição CSS” em CSS

Procure respostas de código populares por idioma

Procurar outros idiomas de código