Pop Images like Google Images

后端 未结 5 665
野的像风
野的像风 2020-12-01 01:36

\"enter

Is there any jQuery plugin or CSS technique to achieve this pop effect like go

相关标签:
5条回答
  • 2020-12-01 02:10

    #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>

    0 讨论(0)
  • 2020-12-01 02:18

    There are a lot of jQuery plugins available for this

    Thickbox

    LightBox

    FancyBox

    FaceBox

    NyroModal

    PiroBox

    0 讨论(0)
  • 2020-12-01 02:22

    I was looking for the same thing and had to build a scalable plugin. What was important for me was it scaled within the Wapper or browser like google.

    Here is the plugin with a demo

    DEMO

    Download plugin on Github

    I hope this helps

    0 讨论(0)
  • 2020-12-01 02:23

    Here's an option for a mouseover preview type plugin: imgpreview

    There's also this, check the second demo: http://cssglobe.com/post/1695/easiest-tooltip-and-image-preview-using-jquery

    Beautytips may also be of some use, it seems quite flexible. The Netflix style box is quite nice.

    0 讨论(0)
  • 2020-12-01 02:25

    See this from google code:

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

    0 讨论(0)
提交回复
热议问题