如何增加懸停時的div大小?每個div都有相同的類名,它是動態創建的。我試過這段代碼:Jquery懸停時增加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的對齊方式嗎?
請出示您的HTML了。 –