aoaohexo

发布于 2024年05月21日

hexo打开文章显示目录

主题文件 source/js/script.js 的56行添加 $('#default-panel > .icon-file-tree').trigger('click');

/*pjax请求回来页面后触发的事件*/
    'pjax:end': function () {
        NProgress.done();
        container.scrollTop(0);
        afterPjax();
        $('#default-panel > .icon-file-tree').trigger('click');
        /*移动端打开文章后,自动隐藏文章列表*/
        if ($(window).width() <= 1024) {
            if ($fullBtn.children().hasClass("max")) {
                $fullBtn.trigger("click");
            } else if ($(".nav").hasClass("mobile")) {
                $(".nav").removeClass("mobile");
                $fullBtn.children().removeClass("mobile");
            }
        }
    },

修改版权下标

"E:\hexo\themes\3-hexo\layout_partial\copyright.ejs"



评论