箱,我有以下結構:展開四面八方
我的目標是當用戶將鼠標放置的箱子,就應該擴大和走在別人沒有打破UI。所以基本上這個盒子應該在每個指令中擴展20px,而其他每個元素都保持在同一個地方。請注意,我不知道這些框的確切大小,因爲它們是負責任的。
我定位的箱子是這樣的:
#holder {
width: 250px;
background-color: #FFCCCC;
overflow: hidden;
padding: 15px;
}
.box {
width: 45%;
height: 50px;
border: 1px grey solid;
float: left;
margin-bottom: 15px;
}
.box:nth-child(odd) {
float: right;
}
與下面的HTML:
<div id="holder">
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
</div>
而且我處理使用jQuery的事件。
$(document).ready(function(){
$(".box").mouseenter(function(){
var _this = $(this);
var newWidth = parseInt(_this.css("width")) + 40,
newHeight = parseInt(_this.css("height")) + 40;
_this.
css("z-index", 99).
animate({
width: newWidth + "px",
height: newHeight + "px",
marginTop: "-20px",
marginLeft: "-20px"
}, 1000);
});
$(".box").mouseleave(function(){
var _this = $(this);
var newWidth = parseInt(_this.css("width")) - 40,
newHeight = parseInt(_this.css("height")) - 40;
_this.
css("z-index", 1).
animate({
width: newWidth + "px",
height: newHeight + "px",
marginTop: "0px",
marginLeft: "0px"
}, 1000);
});
});
這裏是小提琴:http://jsfiddle.net/3T89h/
忘了補充一點,箱子是負責任的,我不知道他們的大小或位置。 – Deepsy
@Deepsy啊,那就變得更棘手了!但通過這種方法仍然可行。 – MLeFevre
我以某種方式工作:)對不起,對於遲到的答案,但我忘了標記這個問題已解決。謝謝。 – Deepsy