我需要建立一个像jQuery手风琴一样的效果。我有10个项目填满了屏幕;当鼠标悬停在某个项目上时,它会在宽度上扩展。如何让它从最右边的5个项目向右扩展?
我的HTML:
<div class="wrap">
<div style="width: 165.25px; background: rgb(228, 228, 230);" class="item"></div>
<div style="width: 165.25px; background: rgb(35, 123, 192);" class="item"></div>
<div style="width: 165.25px; background: rgb(20, 4, 4);" class="item"></div>
<div style="width: 165.25px; background: rgb(182, 159, 36);" class="item"></div>
<div style="width: 165.25px; background: rgb(162, 169, 180);" class="item"></div>
<div style="width: 161px; background: rgb(37, 29, 4);" class="item"></div>
<div style="width: 161px; background: red;" class="item"></div>
<div style="width: 161px; background: rgb(88, 45, 45);" class="item"></div>
<div style="width: 161px; background: rgb(202, 41, 176);" class="item"></div>
<div style="width: 161px; background: rgb(24, 207, 185);" class="item"></div>
</div>
这是我的css:
.wrap{
width:100%;
float:left;
height: 300px;
overflow: hidden;
}
.item {
float:left;
height: 100%;
display: block;
}
jQuery代码:
$('.item').each(function(e){
$(this).css('width', ($(this).parent().width()/10));
});
$('.item').on('mouseenter', function(event) {
$(this).stop().animate({width: "50%"}, {duration: 500});
}).on('mouseleave', function(event) {
$(this).stop().animate({width: ($(this).parent().width()/10)}, {duration: 500});
});
感谢。
答案 0 :(得分:2)
您需要在内部添加另一个包装器div,其宽度较大,以确保您的浮动元素不会换行到下一行。然后,当悬停元素为#5或更高时,将外包装div滚动到正确的位置:
$('.item').on('mouseenter', function(event) {
//Animate width
$(this).stop().animate({width: $(this).parent().parent().width()/2}, {duration: 500});
if($(this).index() >= 5){
//Animate scrollLeft
var marginLeft = $(this).parent().parent().width() / 10 * 4;
$(this).parent().parent().stop().animate({scrollLeft: marginLeft + 'px'}, {duration: 500});
}
}).on('mouseleave', function(event) {
//Animate width
$(this).stop().animate({width: ($(this).parent().parent().width()/10)}, {duration: 500});
//Animate scrollLeft
$(this).parent().parent().stop().animate({scrollLeft: 0}, {duration: 500});
});
您可以在此处看到它:jsFiddle link
答案 1 :(得分:1)
这个想法是在增加悬停元素的宽度期间减少其他项目的宽度。
var items = $('.item');
var itemsCount = items.length;
var fullWidth = $('.item:first').parent().width();
items.each(function()
{
$(this).css('width', fullWidth / itemsCount);
});
items.on('mouseenter', function()
{
items.not(this).stop().animate({ width: fullWidth / itemsCount / 2 }, 500);
$(this).stop().animate({ width: "50%" }, 500 );
});
items.on('mouseleave', function()
{
items.stop().animate({ width: fullWidth / itemsCount }, 500);
});
有一个奇怪的事情:由于fullWidth / itemsCount / 2
而不是正确的fullWidth / (itemsCount - 1) / 2
,手风琴的右边框上有空位,但fullWidth / (itemsCount - 1) / 2
最后一个元素有时会从屏幕上消失。