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); }