如何在悬停时增加 div 大小?每个 div 都有相同的类名,它是动态创建的。我试过这段代码:
<script type="text/javascript">
$('.resultitem').bind('mouseover', function() {
$(this).addClass('hovers');
$('.resultitem').not('.hover').css({ opacity: 0.3 });
});
$('.resultitem').bind('mouseout', function() {
$('.resultitem').removeClass('hovers').fadeTo('normal',1);
});
</script>
<style type="text/css">
.hovers {
width:300px;
height:400px;
}
img.hovers {
width:300px;
height:300px;
}
</style>
它改变了其他div的对齐方式?