您的代码中的以下修改将解决您的问题。
请注意,此解决方案特定于您提供的绝对数字和您提供的代码。
您可以轻松地对其进行调整以使其更短,并使其在您的解决方案中动态工作。
我的目的是向您展示如何解决这个问题。
HTML部分:
<div class="wrapper">
<div class="menu_right">
<div class="item_right"><div class="inner_right" style="top: 0px; right:0px;"><a href="#">1</a></div></div>
<div class="item_right"><div class="inner_right" id="middleRow" style="top: 130px; right:0px;"><a href="#">2</a></div></div>
<div class="item_right" ><div class="inner_right" style="bottom: 0px; right:0px;"><a href="#">3</a></div></div>
</div>
</div>
JavaScript 部分:
$(" .inner_left, .inner_right ").hover(function() {
var currentId = $(this).attr('id');
if (currentId == "middleRow") {
var topPos = $(this).position().top - 25;
var topPosPx = topPos + "px"; //or you could simply put 105px here specific to your code
$(this).css("z-index", "99999");
$(this).stop(true,false).animate({ width: "240px",height: "180px", top: topPosPx }, 250);
$(this).css("background-color", "#D0D0D0");
}
else {
$(this).css("z-index", "99999");
$(this).stop(true,false).animate({ width: "240px",height: "180px" }, 250);
$(this).css("background-color", "#D0D0D0");
}
},function() {
var currentId = $(this).attr('id');
if (currentId == "middleRow") {
$(this).css("z-index", "");
$(this).stop(true,false).animate({ width: "125px",height: "130px", top: "130px" }, 250);
$(this).css("background-color", "#ffffff");
}
else {
$(this).css("z-index", "");
$(this).stop(true,false).animate({ width: "125px",height: "130px" }, 250);
$(this).css("background-color", "#ffffff");
}
});
对于 CSS,不需要对 jsfiddle.net 代码中提供的 css 进行任何更改。