我正在尝试在我的网络应用程序中使用jQuery fadIn函数,但持续时间/速度参数没有任何效果。这是HTML代码:
<!DOCTYPE html>
<html>
<head>
<title>Web App Test Bench</title>
<meta name="viewport" content="user-scalable=yes,width=device-width" />
<meta charset="ISO-8859-1"/>
<link rel="icon" type="image/png" href="mj_logo.png" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.0 /jquery.mobile-1.1.0.min.css" />
<script type="text/javascript" src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script src="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.js"></script>
<script type="text/javascript" src="test.js"></script>
<body>
<section id="page1" data-role="page">
<div data-role="content" class="content">
<img id="logo" src="welcomeLogo.jpg" alt="Welcome Logo"/>
</div>
</section>
</body>
</html>
javascript是:
$(document).ready(function()
{
$("#logo").hide().fadeIn("8000",function()
{
console.log("The animation is done");
}
).fadeOut("8000");
})
无论我选择哪个值,无论大小,动画都是快速完成的。关于可能出现什么问题的任何建议?
答案 0 :(得分:2)
它应该是一个数字,而不是一个字符串。
$(document).ready(function()
{
$("#logo").hide().fadeIn("8000",function()
{
console.log("The animation is done");
}
).fadeOut(8000);
})
答案 1 :(得分:2)
您需要将速度作为整数而不是字符串值传递,从而生成代码:
$(document).ready(function()
{
$("#logo").hide().fadeIn(8000,function()
{
console.log("The animation is done");
}
).fadeOut(8000);
})
如果您确实想使用字符串值,可以使用'fast'和'slow'分别表示200和600毫秒的持续时间。