adding and removing multiple div dynamically
Im a bit stuck. this is what it suppose to do. When you mouse over a menu item it slides out the next menu and adds a new vertical div which must be 5px wide in between the current div and the next but i can't add and remove the div. i have a condition that checks that the div is not the last on I've commented it in my code if you can help it would be appreciated. here is a sample jsFiddle
$(document).ready(function () {
$('.menu-item').mouseenter(function () {
var curr = $(this).closest('.container');
var next = curr.next('.container');
next.animate({ 'left': curr.position().left + curr.width() + 5 });
if(curr.index() < ($('.container').length - 1)){
//here i need to add and remove a </div class="spacer"></div> to the right side
of the current(var curr) div
}
var $index = curr.index() + 1;
$('.container:nth-child(' + $index + ')').nextAll().each(function () {
$(this).animate({ 'left': curr.position().left + curr.width() + 5 });
});
});
});
.spacer
{
background-color:Red; width:5px; height:200px; position:absolute; z-index:1000;
}
<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:400p开发者_C百科x; 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>
Sounds like you need accordion. Why not just use one of the million plugins available for jQuery?
精彩评论