像谷歌图像的流行图像

时间:2011-09-14 04:51:41

标签: jquery thumbnails pop

enter image description here

是否有任何jQuery插件或CSS技术来实现像谷歌图像这样的流行效果?

由于

5 个答案:

答案 0 :(得分:19)

#images{
    padding:30px;
}
#images img{
    position:relative;
    float:left;
    height:100px;
    margin:5px;
    transition:0.3s;
    box-shadow: 0 0 0 10px #fff;
}
#images img:hover{
    z-index:2;
    transform: scale(1.2);
}
#images img:hover:after{
    content: attr(title);
}
<div id="images">
  <img src="http://dummyimage.com/180x120/000/fff" alt=""/>
  <img src="http://dummyimage.com/175x104/f0f/fff" alt=""/>
  <img src="http://dummyimage.com/150x100/a3d/fff" alt=""/>
  <img src="http://dummyimage.com/278x125/cf5/fff" alt=""/>
  <img src="http://dummyimage.com/199x120/e46/fff" alt=""/>
  <img src="http://dummyimage.com/207x480/361/fff" alt="" />
  <img src="http://dummyimage.com/400x107/081/fff" alt="" />
  <img src="http://dummyimage.com/50x40/cc3/fff" alt="" />
  <img src="http://dummyimage.com/700x500/233/fff" alt="" />
  <img src="http://dummyimage.com/300x120/a26/fff" alt="" />
  <img src="http://dummyimage.com/341x177/f10/fff" alt="" />
</div>

答案 1 :(得分:2)

我一直在寻找同样的东西,不得不构建一个可扩展的插件。对我来说重要的是它在Wapper或浏览器中缩放,如google。

这是带有演示的插件

DEMO

Download plugin on Github

我希望这会有所帮助

答案 2 :(得分:1)

有很多jQuery插件可用于此

<强> Thickbox

<强> LightBox

<强> FancyBox

<强> FaceBox

<强> NyroModal

<强> PiroBox

答案 3 :(得分:0)

以下是鼠标悬停预览类型插件的选项:imgpreview

还有这个,请查看第二个演示:http://cssglobe.com/post/1695/easiest-tooltip-and-image-preview-using-jquery

Beautytips也可能有用,看起来很灵活。 Netflix风格的盒子相当不错。

答案 4 :(得分:0)

从谷歌代码中查看:

http://code.google.com/p/jquery-image-hover/