gpt4 book ai didi

javascript - 淡入 onLoad 函数

转载 作者:行者123 更新时间:2023-12-03 08:21:06 25 4
gpt4 key购买 nike

所以,我试图让这个 id 在页面加载时淡入。我看过有关淡入的帖子。但是,我没有找到任何与 onLoad 函数相关的帖子。谁能帮我解决这个问题吗?

HTML:

 <div id="intro"> HELLO, I AM </div>

Javascript:

$( "#intro" ).onLoad(function() {
$( "#intro" ).fadeIn( "slow")
});

最佳答案

没有像 onLoad 这样的 jQuery 函数。另外,您可能希望使用 CSS 将元素的默认显示设置为“无”。并且,正如 @Andreas 评论的那样,您可以将 $.fadeIn() 调用放入 $(document).ready() 回调中,因此它仅执行一次DOM 已加载。所以,现在大家一起:

HTML:

<div id="intro"> HELLO, I AM </div>

CSS:

#intro {
display: none;
}

JS:

$(document).ready(function() {
$("#intro").fadeIn("slow");
});

关于javascript - 淡入 onLoad 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33746052/

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