GeneratePress主题缩略图缩放

GeneratePress主题缩略图在悬停时添加缩放效果

这是一个很酷的CSS效果:

 

.post-image {
    position: relative;
    overflow: hidden;
}
.post-image img {
    max-width: 100%;
  
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.post-image:hover img {
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}
声明:本站资源绿色无后门无广告,可放心下载。如无特殊说明或标注,均为本站原创发布,转载请注明出处!