Metodo 1:
Se stai cercando una transizione auto-invocante, dovresti usare le Animazioni CSS 3 . Non sono supportati neanche, ma questo è esattamente il tipo di cosa per cui sono stati creati.
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; }
}
dimostrazione
Supporto per il browser
Tutti i browser moderni e Internet Explorer 10 (e versioni successive): http://caniuse.com/#feat=css-animation
Metodo 2:
In alternativa, è possibile utilizzare jQuery (o JavaScript semplice; vedere il terzo blocco di codice) per modificare la classe al caricamento:
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 semplice (non nella demo)
document.getElementById("test").children[0].className += " load";
dimostrazione
Supporto per il browser
Tutti i browser moderni e Internet Explorer 10 (e versioni successive): http://caniuse.com/#feat=css-transitions
Metodo 3:
In alternativa, è possibile utilizzare il metodo utilizzato da .Mail :
jQuery
$("#test p").delay(1000).animate({ opacity: 1 }, 700);
CSS
#test p {
opacity: 0;
font-size: 21px;
margin-top: 25px;
text-align: center;
}
dimostrazione
Supporto per il browser
jQuery 1.x : tutti i browser moderni e Internet Explorer 6 (e versioni
successive): http://jquery.com/browser-support/
jQuery 2.x : tutti i browser moderni e Internet Explorer 9 (e versioni successive): http: // jquery.com/browser-support/
Questo metodo è il più compatibile tra loro in quanto il browser di destinazione non deve supportare transizioni o animazioni CSS 3 .