gpt4 book ai didi

javascript - jQuery切换()setInterval不起作用

转载 作者:行者123 更新时间:2023-12-02 20:17:36 25 4
gpt4 key购买 nike

我有这个:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">

<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<link href="http://fonts.googleapis.com/css?family=Geo:regular" rel="stylesheet" type="text/css" >
<style>
body {
font-family: 'Geo', serif;
font-size: 32px;
font-style: normal;
font-weight: 400;
text-shadow: none;
text-decoration: none;
text-transform: none;
letter-spacing: 0em;
word-spacing: 0em;
line-height: 1.2;
}
</style>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.0/jquery.min.js"></script>
<script type="text/javascript">
function cursorAnimation()
{
$(".cursor").toggle();
}
$(document).ready(function()
{
setInterval ( "cursorAnimation()", 1900);
});

</script>
<title>Untitled 2</title>
</head>

<body>

So, what's the deal?<span class="cursor">[WARNING]</span>


</body>
</html>

而且它在技术上是有效的。然而,切换功能正在工作,但速度太快了。我尝试搞乱 setInterval 但它并没有做一件该死的事情...我只是想让它在循环中出现和消失(就像光标一样)但不会褪色。

最佳答案

尝试 setInterval(cursorAnimation, 1900 );

关于javascript - jQuery切换()setInterval不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6012789/

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