Método 1:
Si está buscando una transición autoinvocatoria, entonces debe usar animaciones CSS 3 . Tampoco son compatibles, pero este es exactamente el tipo de cosas para las que fueron hechas.
CSS
#test p {
margin-top: 25px;
font-size: 21px;
text-align: center;
-webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
-moz-animation: fadein 2s; /* Firefox < 16 */
-ms-animation: fadein 2s; /* Internet Explorer */
-o-animation: fadein 2s; /* Opera < 12.1 */
animation: fadein 2s;
}
@keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
/* Firefox < 16 */
@-moz-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
/* Internet Explorer */
@-ms-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
/* Opera < 12.1 */
@-o-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
Manifestación
Soporte de navegador
Todos los navegadores modernos e Internet Explorer 10 (y posteriores): http://caniuse.com/#feat=css-animation
Método 2:
Alternativamente, puede usar jQuery (o JavaScript simple; vea el tercer bloque de código) para cambiar la clase en la carga:
jQuery
$("#test p").addClass("load");
CSS
#test p {
opacity: 0;
font-size: 21px;
margin-top: 25px;
text-align: center;
-webkit-transition: opacity 2s ease-in;
-moz-transition: opacity 2s ease-in;
-ms-transition: opacity 2s ease-in;
-o-transition: opacity 2s ease-in;
transition: opacity 2s ease-in;
}
#test p.load {
opacity: 1;
}
JavaScript simple (no en la demostración)
document.getElementById("test").children[0].className += " load";
Manifestación
Soporte de navegador
Todos los navegadores modernos e Internet Explorer 10 (y posteriores): http://caniuse.com/#feat=css-transitions
Método 3:
O puede usar el método que utiliza .Mail :
jQuery
$("#test p").delay(1000).animate({ opacity: 1 }, 700);
CSS
#test p {
opacity: 0;
font-size: 21px;
margin-top: 25px;
text-align: center;
}
Manifestación
Soporte de navegador
jQuery 1.x : Todos los navegadores modernos e Internet Explorer 6 (y posterior): http://jquery.com/browser-support/
jQuery 2.x : Todos los navegadores modernos e Internet Explorer 9 (y posterior): http: // jquery.com/browser-support/
Este método es el más compatible, ya que el navegador de destino no necesita admitir transiciones o animaciones CSS 3 .