我正在試圖製作一個像this這樣的滑動窗體按鈕,我不熟悉JQuery請提出建議。如何在按鈕上滑動Div點擊
的HTML: -
<div id="introFormHome">
<form action="" method="">
<div id="slideBox1" class="slideBox">
Conferm Location <input type="text" value="" />
<button class="slideNext">Continue</button>
</div>
<div id="slideBox2" class="slideBox">
Area <input type="text" value="" />
<button class="slideNext">Continue</button>
</div>
<div id="slideBox3" class="slideBox">
Email Address <input type="text" value="" />
<button class="slideNext">Continue</button>
</div>
</form>
jQuery的: -
<script type="text/javascript" >
$('.slideNext').click(function() {
$('.slideBox').animate({
left: '-50%'
}, 500, function() {
$(this).css('left', '150%');
$(this).appendTo('#introFormHome');
});
$(this).next().animate({
left: '50%'
}, 500);
});
</script>
的CSS: -
.slideBox {
position: absolute;
width: 450px;
height: 200px;
line-height: 300px;
font-size: 50px;
text-align: center;
border: 2px solid black;
left: 70%;
top: 300px;
margin-left: -25%;
}
#slideBox1 {
background-color: blue;
}
#slideBox2 {
background-color: yellow;
left: 150%;
}
#slideBox3 {
background-color: red;
left: 150%;
}
那裏的CSS,其工作正常,如果我設置爲單擊div.slideBox {}它幻燈片,但不是與上面張貼的腳本。
你的嘗試有什麼問題?你有什麼錯誤嗎? – TheCarver 2012-07-22 06:43:41
它不滑動....如果我們設置整個div滑動比它,但不是與點擊一個按鈕... :( – tamal3053 2012-07-22 06:45:14
好吧,看到我的答案如下 – TheCarver 2012-07-22 06:50:02