$(".first").animate({"color":"red"}, 500,
function()
{
$(".first").animate({"color":"black"}, 500,
function()
{
$(".second").animate({"color":"red"}, 500,
function(){
$(".second").animate({"color":"black"}, 500);
});
});
}
);
思想是提供回調函數將被調用時,動畫完成。所以在第一種情況下,當.first
變爲紅色時,它會調用給定的匿名函數,將其變回黑色,然後調用其匿名回調函數將.second
變爲紅色......得到它? =)
你可以閱讀更多關於.animate() here。
P.S.
這裏是工作的例子:
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/jquery-ui.min.js"></script>
<script type="text/javascript">
$(document).ready(function()
{
$(".first").animate({"color":"red"}, 500,
function()
{
$(".first").animate({"color":"black"}, 500,
function()
{
$(".second").animate({"color":"red"}, 500,
function(){
$(".second").animate({"color":"black"}, 500);
});
});
}
);
});
</script>
</head>
<body>
<h1 class="first" style="color: black;">This is the first paragraph</h1>
<h1 class="second" style="color: black;">This is the second paragraph</h1>
</body>
</html>
我試圖環繞它我的頭,我會得到它:)。由於某種原因,您的示例不適用於我的文檔,但如果我將顏色更改爲不透明並刪除引號,則可以對不透明度設置動畫效果,那麼可能出現什麼問題? – andrei 2010-07-01 10:08:38
現在試試嗎? (查看PS下的編輯答案) – Cipi 2010-07-01 11:04:19
好吧,它是在那裏呢?我無法想象它會去哪裏。在文檔的頭部。 – andrei 2010-07-01 12:21:39