gpt4 book ai didi

jquery - 漂亮照片添加延迟

转载 作者:行者123 更新时间:2023-12-01 04:27:18 25 4
gpt4 key购买 nike

我目前已经安装了 Prettyphoto 并设法在页面加载时启动 iframe

$(document).ready(function(){

添加延迟的最快方法是什么?

最佳答案

window.setTimeout JavaScript 中的函数很容易使用。

你可能会做类似的事情

$(document).ready(function(){
$('#photo').prettyphoto(); //Not sure how you call prettyphoto
}

在调用电话之前添加延迟:

$(document).ready(function(){
//The call to callPrettyPhoto will only be made after 1 second
window.setTimeout(callPrettyPhoto, 1000 );
});

function callPrettyPhoto() {
$('#photo').prettyphoto();
}

请注意,如果您愿意,您也可以将函数内联:

$(document).ready(function(){
window.setTimeout(function() {
$('#photo').prettyphoto();
}, 1000);
});

关于jquery - 漂亮照片添加延迟,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5570478/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com