0
我已經創建了一個動畫鏈我有兩個問題:寬度和init問題
初始化函數不第一個
div.container
在我的mouseenter功能設置寬度直路在這裏我不得不使用-10的
#menu
所以寬度不會擴展出方最後div.containers
這是jsFiddle個
JS:
$(document).ready(function() {
function init() {
$('#menu').css({ 'width': $('.container:first').width(), 'height': $('.container:first').height() });
}
init();
$('.menu-item').mouseover(function() {
var curr = $(this).closest('.container');
var next = curr.next('.container');
var index = curr.index() + 1
$('#menu').animate({ 'width': curr.position().left + curr.width() + next.width() - 9 /* don't know why i have to use -9*/ })
.find('.container').css({ 'opacity': 0.5 })
.filter('.container:nth-child(' + index + ')').nextAll().animate({ 'left': curr.position().left + curr.width() });
});
});
CSS:
.spacer
{
background-color:Red; width:5px; height:200px; position:absolute; z-index:1000;
}
HTML:
<table border="2" cellpadding="0" cellspacing="0">
<tr>
<td>
<div id="menu" style="background-color:Black; width:2000px; height:300px;top:5px; left:50px ">
<div class="container" id="1" style="left:0; width:200px; height:220px; z-index:999; position:absolute; background-color:Aqua">
<div class="menu-item">Menu Item 1</div>
<div class="menu-item">Menu Item 2</div>
<div class="menu-item">Menu Item 3</div>
</div>
<div class="container" id="2" style="left:0; width:200px; height:300px; z-index:998; position:absolute; background-color:Blue">
<div class="menu-item">Menu Item 4</div>
<div class="menu-item">Menu Item 5</div>
<div class="menu-item">Menu Item 6</div>
</div>
<div class="container" id="3" style="left:0; width:200px; height:400px; z-index:997; position:absolute; background-color:Fuchsia">
<div class="menu-item">Menu Item 7</div>
<div class="menu-item">Menu Item 8</div>
<div class="menu-item">Menu Item 9</div>
</div>
<div class="container" id="4" style="left:0; width:200px; height:500px; z-index:996; position:absolute; background-color:Green; float:left">
<div class="menu-item">Menu Item 10</div>
<div class="menu-item">Menu Item 11</div>
<div class="menu-item">Menu Item 12</div>
</div>
<div class="container" id="5" style="left:0; width:200px; height:600px; z-index:995; position:absolute; background-color:Lime; float:left">
<div class="menu-item">Menu Item 10</div>
<div class="menu-item">Menu Item 11</div>
<div class="menu-item">Menu Item 12</div>
</div>
</div>
</td>
</tr>
</table>
thankyou @kingjiv你知道我怎麼可以在每個動畫之間添加一個div,爲容器滑動,這就是我想要做的事情。也是我的init fucntion沒有設置#menu div到第一個div.container的寬度那就是我想說的 – ONYX 2011-05-07 03:26:38
它實際上是更新init的寬度,它只是用.5不透明度和5個堆疊的div通過所有這些divs無法真正看到黑色的效果。看到這個稍微更新的小提琴。我刪除了div上的背景並放置了邊框,以便您可以看到黑色http://jsfiddle.net/gygk7/6/ – 2011-05-07 04:17:34
的動畫也不確定在動畫之間添加div的意思。 divs去哪裏? – 2011-05-07 04:19:55