0
我想在點擊按鈕之後從頂部爲div框和按鈕設置動畫,並在點擊相同按鈕時將框和按鈕返回到初始位置。使用jQuery從頂部設置動畫div框
CSS:
#box{
position:relative;
width:500px;height:200px;
margin-top:200px;
border:2px solid black;
}
#box .info-box{
position:absolute;
width:500px;height:200px;
top:-200px;
background:green;
#box .button{
position:absolute;
width:30px;height:30px;
background:red;
top:30px;right:10px;
}
HTML:
<div id="box">
<div class="button"></div>
<div class="info-box"></div>
</div>
jQuery的動畫初始單擊框。
$(".button").click(function(){
$(this).animate({top:-30});
$(".info-box").animate({top:0}, 300)
});
我想動畫info-box
,以填補框和button
到盒(頂部:-30px)外動畫cliking按鈕後,想點擊相同後返回初始位置的信息,框和按鈕按鈕。
是的!這對我有用 – galexy