方法1:
自己起動トランジションを探している場合は、CSS 3アニメーションを使用する必要があります。それらもサポートされていませんが、これはまさにそのために作られたものです。
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; }
}
デモ
ブラウザのサポート
すべての最新のブラウザーとInternet Explorer 10(およびそれ以降):http : //caniuse.com/#feat=css-animation
方法2:
または、jQuery(またはプレーンJavaScript、3番目のコードブロックを参照)を使用して、ロード時にクラスを変更することもできます。
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(デモにはありません)
document.getElementById("test").children[0].className += " load";
デモ
ブラウザのサポート
すべての最新のブラウザーとInternet Explorer 10(およびそれ以降):http : //caniuse.com/#feat=css-transitions
方法3:
または、.Mailが使用する方法を使用できます。
jQuery
$("#test p").delay(1000).animate({ opacity: 1 }, 700);
CSS
#test p {
opacity: 0;
font-size: 21px;
margin-top: 25px;
text-align: center;
}
デモ
ブラウザのサポート
jQuery 1.x:すべての最新のブラウザとInternet Explorer 6以降:http
: //jquery.com/browser-support/
jQuery 2.x:すべての最新のブラウザとInternet Explorer 9(以降):http:// jquery.com/browser-support/
ターゲットブラウザはCSS 3のトランジションまたはアニメーションをサポートする必要がないため、この方法は最も互換性があります。