Result
jQuery
//setTimeout関数でfadeOut()の実行を遅延させる
setTimeout(function() {
$('#foo').fadeOut();
}, 5000);
css
#foo{
background: #eee ;
margin:25px;
padding:25px;
width: 200px ;
}
html
<div id="foo">Fadeout....</div>
//setTimeout関数でfadeOut()の実行を遅延させる
setTimeout(function() {
$('#foo').fadeOut();
}, 5000);
#foo{
background: #eee ;
margin:25px;
padding:25px;
width: 200px ;
}
<div id="foo">Fadeout....</div>