Hexo 图片的居中配置

发布于 2024-04-08 14:08:30 字数 1311 浏览 20 评论 0

在 Icarus 主题中,图片默认是居左对其的,主题文章图片居中问题的解决办法很简单,只需要修改 ~/themes/icarus/source/js/main.js 的文件内容如下:

$('.article img:not(".not-gallery-item")').each(function () {
    // wrap images with link and add caption if possible
    if ($(this).parent('a').length === 0) {
-       $(this).wrap('<a class="gallery-item" href="' + $(this).attr('src') + '"></a>');        
+       $(this).wrap('<a class="gallery-item" style="display:block;text-align:center;" href="' + $(this).attr('src') + '"></a>');
        if (this.alt) {
            $(this).after('<div class="has-text-centered is-size-6 has-text-grey caption">' + this.alt + '</div>');
        }
    }
});

还有一种比较优雅的方式就是修改 ~/themes/icarus/layout/css/style.styl 文件的内容如下:

.article
    .article-meta
        margin-bottom: 0.5rem !important
    .content
        font-size: 1.1rem
        blockquote.pullquote
            float: right
            max-width: 50%
            font-size: 1.15rem
            position: relative
+       a
+           img
+               margin: auto
+               display: block

文章参考至: Icarus 主题配置

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

关于作者

吻泪

暂无简介

0 文章
0 评论
23 人气
更多

推荐作者

内心激荡

文章 0 评论 0

JSmiles

文章 0 评论 0

左秋

文章 0 评论 0

迪街小绵羊

文章 0 评论 0

瞳孔里扚悲伤

文章 0 评论 0

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文