jQuery 上的 .animate 给我带来了麻烦,所以我想在没有它的情况下调整 div 的大小。
我正在寻找使用 CSS 放大框。我有 4 个彼此相邻的框,当其中一个被单击时,它应该放大,而其余的框移出屏幕(可能左边的所有框都向左,右边的所有框向右)。盒子在一个应该扩大的矩形中。
我认为可以通过在 CSS (.thumb:click) 中创建一个新类来完成,但是如何使用 Javascript/HTML 来执行放大和推离屏幕?
HTML:
<div class="portItem">
<div class="itemContent-wrap">
<div class="itemContent">
<div class="container">
<div class="thumbWrap">
<div class="thumb"></div>
<div class="thumb"></div>
<div class="thumb"></div>
<div class="thumb"></div>
</div>
</div>
</div>
</div>
</div>
CSS:
.itemContent-wrap {
display: inline-block;
width: 100%;
height: auto;
margin-bottom: 10px;
}
.itemContent {
height: 250px;
width: auto;
position: static;
display: block;
background: #ffffff;
box-shadow: 1px 0px 20px black;
margin-bottom: 10px;
margin-left:-12.5%;
margin-right:-12.5%;
overflow-y: hidden;
}
.container {
width: 110%;
margin: 0 auto;
background: transparent;
position: relative;
}
.thumbWrap {
height: 220px;
white-space: nowrap;
width: 2000px;
}
.thumb {
height: 200px;
width: 450px;
position: relative;
display: inline-block;
background: #D0E182;
margin-top: 25px;
margin-right: 5px;
}
//my guess...
.thumb:click {
}
Javascript(使用 .animate 时...想避免这种情况)
$(document).ready(function(){
$('.thumb').click(function()
{
$('.itemContent').css("cursor","pointer");
$('.itemContent').animate({height: "500px"}, 'slow');
$(this).animate({width: "900px",height:"400px"}, 'slow');
});
$('.thumb').mouseout(function()
{
$('.itemContent').animate({height: "250px"}, 'slow');
$(this).animate({width: "450px",height:"200px"}, 'slow');
});
});
JSFiddle:http: //jsfiddle.net/g4GFb/
先感谢您!