我想在頁面加載2秒後淡入淡出一些文本,5秒鐘後我想淡出它。小提琴here使用jquery淡入淡出文本
我曾嘗試使用下面的代碼嘗試:
<div id="intro-wrap">
<div id="intro-text">
<h1 style="font-size: 20px; letter-spacing: 0.1em; font-family: serif; color: rgb(253, 236, 204); font-weight: 100;">Creating the world's most exceptional homes</h1>
</div>
</div>
$(window).on("load", function() {
$('#intro-wrap').fadeIn('4000', function() {
// First Animation complete
$(this).fadeOut('4000', function() {
// Second Animation complete
});
});
});
問題是文本快速出現和消失。我怎樣才能讓它在某個時間之後出現,讓它看起來有一段時間,然後使它消失?
通行證'4000'不是''4000'' – 2014-10-29 13:42:26