Pop Images like Google Images

后端 未结 5 664
野的像风
野的像风 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);
    }

提交回复
热议问题