我目前正在制作一个图片库。它工作正常,除了在谷歌浏览器中,当您将鼠标悬停在顶行时,下面的行将开始振动和移动。您可以在此处找到一个工作示例。
的HTML:
<div id="gallery">
<a href="<?php echo'?img=$imgname';?>" >
<span c
lass="title"><?php echo'$imgtitle';?></span>
<img src="http://ivojonkers.com/fotorichard/images_slider/1.jpg" />
</a>
<a href="<?php echo'?img=$imgname';?>" >
<span class="title"><?php echo'$imgtitle';?></span>
<img src="http://ivojonkers.com/fotorichard/images_slider/1.jpg" />
</a>
<a href="<?php echo'?img=$imgname';?>" >
<span class="title"><?php echo'$imgtitle';?></span>
<img src="http://ivojonkers.com/fotorichard/images_slider/1.jpg" />
</a>
<a href="<?php echo'?img=$imgname';?>" >
<span class="title"><?php echo'$imgtitle';?></span>
<img src="http://ivojonkers.com/fotorichard/images_slider/1.jpg" />
</a>
<a href="<?php echo'?img=$imgname';?>" >
<span class="title"><?php echo'$imgtitle';?></span>
<img src="http://ivojonkers.com/fotorichard/images_slider/1.jpg" />
</a>
<a href="<?php echo'?img=$imgname';?>" >
<span class="title"><?php echo'$imgtitle';?></span>
<img src="http://ivojonkers.com/fotorichard/images_slider/1.jpg" />
</a>
<a href="<?php echo'?img=$imgname';?>" >
<span class="title"><?php echo'$imgtitle';?></span>
<img src="http://ivojonkers.com/fotorichard/images_slider/1.jpg" />
</a>
<a href="<?php echo'?img=$imgname';?>" >
<span class="title"><?php echo'$imgtitle';?></span>
<img src="http://ivojonkers.com/fotorichard/images_slider/1.jpg" />
</a>
<a href="<?php echo'?img=$imgname';?>" >
<span class="title"><?php echo'$imgtitle';?></span>
<img src="http://ivojonkers.com/fotorichard/images_slider/1.jpg" />
</a>
<a href="<?php echo'?img=$imgname';?>" >
<span class="title"><?php echo'$imgtitle';?></span>
<img src="http://ivojonkers.com/fotorichard/images_slider/1.jpg" />
</a>
<a href="<?php echo'?img=$imgname';?>" >
<span class="title"><?php echo'$imgtitle';?></span>
<img src="http://ivojonkers.com/fotorichard/images_slider/1.jpg" />
</a>
</div>
CSS
#gallery {
width: 100%;
margin-top: 100px;
padding-bottom: 100px;
display:block;
text-align:center;
}
#gallery a {
display: inline-block;
margin: 0 12.5px 25px 12.5px;
position: relative;
height:150px;
width:225px;
}
#gallery a img {
height:150px;
width:225px;
position:relative;
}
jQuery
$(document).ready(function() {
$("#gallery a img").hover(function(){
$(this).css({"z-index":"99"});
$(this).stop(true, false).animate({ "margin-left":"-112.5px",
"margin-top":"-150px",
"bottom":"-75px",
"height":"300px",
"width":"450px"
});
}, function() {
$(this).css({"z-index":"0"});
$(this).stop(true, false).animate({"height":"150px",
"width":"225px",
"margin-left":"0px",
"margin-top":"0px",
"bottom":"0px"
});
});
});
PS如果你缩小更多它会更明显。
提前感谢您的帮助。