gpt4 book ai didi

javascript - 淡出初始页面

转载 作者:太空宇宙 更新时间:2023-11-04 13:33:12 25 4
gpt4 key购买 nike

我正在尝试在我创建的初始页面上创建一个淡出效果,该页面与我网站的主页融为一体。我的网站是:http://www.simonsamuel.com/

我使用的 jQuery 代码是:

<script type="text/javascript">
$("#splash").click(function() {
$("#splash").fadeOut("slow");
});
</script>

这是 CSS 代码:

#splash {
background-color: #ffffff;
background-image: url(http://i.imgbox.com/Al4c3tZ5.png);
background-position: center;
background-repeat: no-repeat;
position: fixed;
top: -60px;
right: 0;
bottom: 0;
left: 0;
z-index: 99999;
}

我尝试了多种不同的代码,但找不到适用于我网站的代码。出于好奇,我想知道是否可以使用 jQuery 更改网页标题?我想将标题栏的字体设为大写。

帮助将不胜感激,谢谢!

最佳答案

当我查看您的源代码时,我看到了这一点:

<br />
$(document).ready(function() {<br />
$('#splash').click(function() {<br />
$('#splash').fadeOut(2000);<br />
});<br />

为什么该代码中有换行符?那是 html 代码。

除此之外你的代码不完整

$(document).ready(function() {
$('#splash').click(function() {
$('#splash').fadeOut(2000);
}); // forgot these
}); // or these

关于javascript - 淡出初始页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23230653/

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