要让图片悬浮,添加如下 css 即可。
加一个 margin 属性,不需要的可以去掉。
CoreNext主题直接添加到自定义css即可,其他主题应该也差不多。
/*文章图片悬浮效果*/
.post-content-content img {
transition: All 0.4s ease-in-out;
-webkit-transition: All 0.4s ease-in-out;
-moz-transition: All 0.4s ease-in-out;
-o-transition: All 0.4s ease-in-out;
margin: 10px 0;
}
.post-content-content img:hover {
transform: translate(0, -10px);
-webkit-transform: translate(0, -10px);
-moz-transform: translate(0, -10px);
-o-transform: translate(0, -10px);
-ms-transform: translate(0, -10px);
box-shadow:5px 5px 10px gray;
}
© 版权声明
THE END
暂无评论内容