こんにちは、ここに Twitter のブートストラップ アラートがあります。期間/遅延を実装し、1 秒後に消えます...
しかし、達成したいのは、フラッシュアラートをホバーすると、setTimeOut がしばらく一時停止するか停止することです。
ここに私のjsファイルがあります:
var hideFlashes;
$(document).ready(function() {
return setTimeout(hideFlashes, 1000);
});
hideFlashes = function() {
return $(".alert").fadeOut(4000);
};
div クラスを「alert」と呼んでいます
<div class="alert alert-info" id="info">
<button type="button" class="close" data-dismiss="alert">×</button>
<p><strong>Oppcis Tips:</strong>
You have the privileges to view, add, edit or delete specific agencies.
</p>
</div>
stop
特定のフェージングタイマーの方法を本当に知りたいです。
任意の回避策をいただければ幸いです。