我想創建一個jQuery幻燈片效果,以便按下按鈕時,第一個段落標記移出,第二個段落標記移動到視口中。我使用jQuery用戶界面的幻燈片效果,我似乎無法隱藏第二段,然後將其滑入,然後隱藏第一段。jQuery UI不會隱藏元素
HTML:
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="UTF-8">
<script type="text/javascript" src="test.js"></script>
</head>
<body>
<button onclick="hideme()">Hide it</button>
<p id="1">Hide this text</p>
<p id="2"> Show this text</p>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script>
</body>
</html>
的Javascript:
$(window).load(function() {
$('#2').fadeOut(1);
});
function hideme(){
$('#1').hide("slide", 2000);
$('#2').show("slide", 2000);
}
你不應該讓你的ID以數字開頭。 –
如果它現在適合你,請選擇一個正確的答案。 – Ringo