gpt4 book ai didi

javascript - 更多延迟动画

转载 作者:行者123 更新时间:2023-12-03 10:23:35 24 4
gpt4 key购买 nike

这是我的问题...我有这个网站:LINK ,字母和imgs的淡入动画都存储在CSS文件中,而最终的淡出动画是用Javascript编写的。

淡出后,我想使用淡入淡出动画将页面的背景颜色从灰色更改为黑色,但我真的不知道该怎么做。

如果我设置更多延迟,动画似乎不起作用。有人可以帮助我吗?

编辑:这是整个索引页的代码:

http://pastebin.com/wgSz8tEx

最佳答案

以下内容对我有用:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">

<link href="nuovissimo-codice.css" rel="stylesheet" type="text/css">

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>‌​
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.3/jquery-ui.min.js"></script>

<script type="text/javascript">

$(document).ready(function(e) {
$("#tutto").delay(1000).fadeOut(1000, function () {
$('body').animate({backgroundColor:'#000'}, 300);
});
});


</script>

<title>dyingnow</title>
</head>

<body style="background-color:#404040">
the rest goes here......

关于javascript - 更多延迟动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29516319/

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