1
我有問題,當我開始一個對象的動畫另一個也在移動。 所以我需要左側的固定div元素。 我需要設置一些z-index?動畫是與其他對象jquery
<div id="obsah">
<div class="item colorBlue">
<p>spousta textu</p>
</div>
<div class="item colorPurple">
<p>spousta textu</p>
</div>
<div class="item colorGreen">
<p>spousta textu</p>
</div>
<div class="item colorYellow">
<p>spousta textu</p>
</div>
<div class="item colorRed">
<p>spousta textu</p>
</div>
</div>
$(document).ready(function() {
$(".item").click(function() {
var div=$(this);
div.animate({left:"110px",width:'600px'},"slow");
div.animate({height:'600px'},"slow");
});
});
@ user3671862這是值得知道'位置:absolute'是絕對要擁有'位置最近的祖先:relative',所以如果你需要在頁面的特定部分這些div定位,其父母可以使用'position:relative'來控制偏移量,而不是將菜單的高度添加到頂部。 – Popnoodles
@Rory McCrossan善用「頂」;用'br'試過http://jsfiddle.net/guest271314/6wnmA/ – guest271314