Jquery - 设置超时
Jquery - settimeout
我有一个 jquery 函数需要延迟 1 秒。
我在这里搜索过,我需要使用我不知道如何放入 jquery.
的 settimeout 函数
这是我的代码:
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery('.animacao').addClass("hidden").viewportChecker({
classToAdd: 'visible animated fadeInDown', // Class to add to the elements when they are visible
offset: 100
});
});
</script>
有人可以帮我吗?
将要延迟的代码包裹在setTimeout
setTimeout(function() {
jQuery('.animacao').addClass("hidden").viewportChecker({
classToAdd: 'visible animated fadeInDown', // Class to add to the elements when they are visible
offset: 100
});
}, 1000); //the delay is set in milliseconds... 1000ms = 1 second
我有一个 jquery 函数需要延迟 1 秒。 我在这里搜索过,我需要使用我不知道如何放入 jquery.
的 settimeout 函数这是我的代码:
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery('.animacao').addClass("hidden").viewportChecker({
classToAdd: 'visible animated fadeInDown', // Class to add to the elements when they are visible
offset: 100
});
});
</script>
有人可以帮我吗?
将要延迟的代码包裹在setTimeout
setTimeout(function() {
jQuery('.animacao').addClass("hidden").viewportChecker({
classToAdd: 'visible animated fadeInDown', // Class to add to the elements when they are visible
offset: 100
});
}, 1000); //the delay is set in milliseconds... 1000ms = 1 second