Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
要素を自動的に非表示にする方法について助けが必要です.jqueryで数秒以内に自動的に表示されますか?
あなたはこのようにすることができます:
$('#toHide').delay(2000).hide(0); // delay 2 seconds then hide.
ライブデモ。
シンプルな遅延を使用して、それを完了します
あなたはこのように使うことができます
$('#foo').hide(300).delay(800).show(400);
これを確認して ください http://api.jquery.com/delay/