!!!安装前必读!!!
  1. 本网站目前已经开源啦!!!暂定名为hexo-theme-Fomalhaut,开源地址:hexo-theme-Fomalhaut,如果你喜欢的话可以帮我点一个免费的 Star🌟哦!

  2. 本开源项目并不适合纯小白,需要一定的前端基础和魔改经验,因此安装之前务必对 Hexo框架命令和 Butterfly主题比较熟悉,以及掌握最基础的 HTML5、CSS3、JavaScript 知识,不熟悉的朋友建议提前熟悉Hexo 中文文档Butterfly 主题文档,以及熟悉本站魔改教程,别上来就问文章怎么写!!!避免各种不必要的麻烦!!!望周知!!!

  3. 本源码是基于Butterfly 4.3.1的二次开发,暂时没做完全的主题分离,因此安装方法是整个博客的替换,建议另起一个文件夹进行安装,或备份好原来的资料再搬过来。当然你也可以不直接搬走,而是借鉴里面的部分代码写法。

📅3.5 更新

  • 微调部分样式,修复手机端无法加载 css 样式
  • 问题在fomal.js的 1340 行附近,切换至手机端时候导致空指针异常,这部分代码注释掉即可!
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* 搜索框修复 start */
// searchSize();
// window.addEventListener('resize', searchSize)
// // 搜索窗口自适应
// function searchSize() {
// // 只需要适应手机端
// if (document.body.clientWidth > 768) return
// let div = document.querySelector('#algolia-hits')
// // 监听插入,如果有插入则根据可视高度动态设置最大高度
// div.addEventListener('DOMNodeInserted', () => {
// div.children[0].style.maxHeight = (document.documentElement.clientHeight - 210) + 'px'
// })
// }
/* 搜索框修复 end */

大家如果还遇到什么问题欢迎给作者留言,作者看到会第一时间修复哦,感谢您的支持!

🍡 安装教程

注意:作者演示的是 NodeJS v16.14.0 + Hexo 6.3.0

  1. 安装 NodeJs、Hexo、Git、注册并连接 Github,此部分可参考Hexo 博客搭建基础教程(一)
    PS:相当于链接教程的第 1-7 步,第 8 步就不要做了,不然会清空源码的!!!(不是新手请跳过这条)

  2. 把源码打包下载到自己的电脑,然后解压缩到一个你喜欢的文件夹中

  3. 在 git bash 命令中切换到下载的博客根目录,使用以下命令进行模块安装。这里绝不能使用hexo init初始化,若不慎用了,则站点的配置文件_config.yml内容会被重置

    1
    npm i
  4. 执行以下命令清空并启动项目,启动成功后再浏览器地址栏输入localhost:4000进行验证

    1
    hexo cl; hexo g; hexo s
  5. 到这里一般是没啥问题的了,当本地能成功启动后,改一下站点配置文件的_config.ymldeploy配置项,然后用以下命令部署到 Github(这一步出问题的,请删除站点配置文件的deploy配置项与baidu_url_submitter的信息)

    1
    hexo d

🌈 简要说明

  • js 的主体在source/js/fomal.js里面,做了基本分块逻辑的标注,后期整合的,以... start... end 包裹

  • css 主体在themes\butterfly\source\css\_custom\custom.css里,与 Butterfly 的自带样式联合编译为一个 index.css,有基本的注释

  • 因为兼顾了白天夜间模式不同壁纸和用户自定义壁纸,背景的切换做在了fomal.js的第 3190 行附近,美化模块代码逻辑在fomal.js的第 2894-3596 行,四个背景分别为 PC 端白天、PC 端黑夜、手机端白天、手机端黑夜;美化模块起点为第 3356 行,可以自定义任何 DOM,例如按钮、滑块、开关按钮、图片框和外挂标签等(注意:外挂标签必须要被<div id="article-container">包裹才会被渲染)


    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    /* 美化模块 start */
    ...
    // 雪花开关(这里就是默认关雪花,如果你想默认开就将none改为block)
    if (localStorage.getItem("snow") == undefined) {
    localStorage.setItem("snow", "none");
    }
    ...
    // 背景图(约3190行) 下面链接换成你自己的图片链接
    document.getElementById("defineBg").innerText = `:root{
    --default-bg: url(https://lskypro.acozycotage.net/Fomalhaut/img/dm14.webp);
    --darkmode-bg:url(https://lskypro.acozycotage.net/Fomalhaut/img/yuanshen1.webp);
    --mobileday-bg: url(https://lskypro.acozycotage.net/Fomalhaut/img/snow.webp);
    --mobilenight-bg: url(https://lskypro.acozycotage.net/Fomalhaut/img/mb8.webp);
    }`;
    ...
    // 美化模块主体DOM(约3356行)
    winbox.body.innerHTML = `

    ...
    <h3>1. 二次元</h3>
    {% folding cyan, 查看二次元背景 %}
    <div class="bgbox">
    <a href="javascript:;" rel="noopener external nofollow" style="background-image:url(https://lskypro.acozycotage.net/Fomalhaut/img/home_bg.webp)" class="imgbox" onclick="changeBg('url(https://lskypro.acozycotage.net/Fomalhaut/img/home_bg.webp)')"></a>
    // 这里自己加图片
    </div>
    {% endfolding %}
    ...

    `
    ...
    /* 美化模块 end */

  • 页脚部分请见themes\butterfly\layout\includes\footer.pug,包括页脚计时器、徽标、文字、布局等

  • 封面图在主题配置文件_config.butterfly.ymldefault_cover配置项,建议配置多项后随机刷出封面图

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    cover:
    # display the cover or not (是否顯示文章封面)
    index_enable: true
    aside_enable: true
    archives_enable: true
    # the position of cover in home page (封面顯示的位置)
    # left/right/both
    position: both
    # When cover is not set, the default cover is displayed (當沒有設置cover時,默認的封面顯示)
    default_cover:
    - https://source.fomal.cc/img/default_cover_14.webp
    - https://source.fomal.cc/img/default_cover_15.webp
    # ......
  • 网站图标为根目录的favicon.ico,替换为你自己的图标即可

  • 加载页面时中间的头像在custom.css约 1300 行附近,直接搜索替换成你自己的头像即可

    1
    2
    3
    4
    5
    6
    /* heo 加载动画头像 */
    .loading-img {
    background: url(https://lskypro.acozycotage.net/LightPicture/2022/12/60e5d4e39da7c077.webp)
    no-repeat center center;
    background-size: cover;
    }
  • 页脚时间由fomal.js控制,搜索以下代码,将网站诞生时间改为你自己的即可(示例:2022-08-09)

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    /* 页脚计时器 start */
    var now = new Date();
    function createtime() {
    // 当前时间
    now.setTime(now.getTime() + 1000);
    var start = new Date("08/01/2022 00:00:00"); // 旅行者1号开始计算的时间
    var dis = Math.trunc(23400000000 + ((now - start) / 1000) * 17); // 距离=秒数*速度 记住转换毫秒
    var unit = (dis / 149600000).toFixed(6); // 天文单位
    // 网站诞生时间
    var grt = new Date("08/09/2022 00:00:00");
    ...
    let currentTimeHtml = "";
    (currentTimeHtml =
    hnum < 18 && hnum >= 9
    ? `<img class='boardsign' src='https://lskypro.acozycotage.net/Fomalhaut/badge/F小屋-科研摸鱼中.svg' title='什么时候能够实现财富自由呀~'><br> <div style="font-size:13px;font-weight:bold">本站居然运行了 ${dnum}${hnum} 小时 ${mnum}${snum} 秒 <i id="heartbeat" class='fas fa-heartbeat'></i> <br> 旅行者 1 号当前距离地球 ${dis} 千米,约为 ${unit} 个天文单位 🚀</div>`
    : `<img class='boardsign' src='https://lskypro.acozycotage.net/Fomalhaut/badge/F小屋-下班休息啦.svg' title='下班了就该开开心心地玩耍~'><br> <div style="font-size:13px;font-weight:bold">本站居然运行了 ${dnum}${hnum} 小时 ${mnum}${snum} 秒 <i id="heartbeat" class='fas fa-heartbeat'></i> <br> 旅行者 1 号当前距离地球 ${dis} 千米,约为 ${unit} 个天文单位 🚀</div>`),
    document.getElementById("workboard") &&
    (document.getElementById("workboard").innerHTML = currentTimeHtml);
    }
    ...

    /*页脚计时器 end */
  • 控制台字符画,在fomal.js找到以下代码,并进行相应的替换,字符画可以到:Text to ASCII Art Generator (TAAG)生成

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    /* 控制台输出字符画 start */
    var now1 = new Date();

    function createtime1() {
    var grt = new Date("08/09/2022 00:00:00"); //此处修改你的建站时间或者网站上线时间
    now1.setTime(now1.getTime() + 250);
    var days = (now1 - grt) / 1000 / 60 / 60 / 24;
    var dnum = Math.floor(days);

    var ascll = [
    `欢迎来到Fomalhaut🥝の小家!`,
    `Future is now 🍭🍭🍭`,
    `

    ███████ ██████ ███ ███ █████ ██ ██ ██ █████ ██ ██ ████████
    ██ ██ ██ ████ ████ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
    █████ ██ ██ ██ ████ ██ ███████ ██ ███████ ███████ ██ ██ ██
    ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
    ██ ██████ ██ ██ ██ ██ ███████ ██ ██ ██ ██ ██████ ██

    `,
    "小站已经苟活",
    dnum,
    "天啦!",
    "©2022 By Fomalhaut",
    ];

    setTimeout(
    console.log.bind(
    console,
    `\n%c${ascll[0]} %c ${ascll[1]} %c ${ascll[2]} %c${ascll[3]}%c ${ascll[4]}%c ${ascll[5]}\n\n%c ${ascll[6]}\n`,
    "color:#39c5bb",
    "",
    "color:#39c5bb",
    "color:#39c5bb",
    "",
    "color:#39c5bb",
    ""
    )
    );
    }

    createtime1();

    function createtime2() {
    var ascll2 = [`NCC2-036`, `调用前置摄像头拍照成功,识别为「大聪明」`, `Photo captured: `, ` 🤪 `];

    setTimeout(
    console.log.bind(
    console,
    `%c ${ascll2[0]} %c ${ascll2[1]} %c \n${ascll2[2]} %c\n${ascll2[3]}`,
    "color:white; background-color:#10bcc0",
    "",
    "",
    'background:url("https://unpkg.zhimg.com/anzhiyu-assets@latest/image/common/tinggge.gif") no-repeat;font-size:450%'
    )
    );

    setTimeout(console.log.bind(console, "%c WELCOME %c 欢迎光临,大聪明", "color:white; background-color:#23c682", ""));

    setTimeout(
    console.warn.bind(
    console,
    "%c ⚡ Powered by Fomalhaut🥝 %c 你正在访问Fomalhaut🥝の小家",
    "color:white; background-color:#f0ad4e",
    ""
    )
    );

    setTimeout(console.log.bind(console, "%c W23-12 %c 系统监测到你已打开控制台", "color:white; background-color:#4f90d9", ""));
    setTimeout(
    console.warn.bind(console, "%c S013-782 %c 你现在正处于监控中", "color:white; background-color:#d9534f", "")
    );
    }
    createtime2();
    ...
    /* 控制台输出字符画 end */
  • 加载头像见themes\butterfly\source\css\_custom\custom.css下的:

    1
    2
    3
    4
    5
    .loading-img {
    background: url(https://lskypro.acozycotage.net/LightPicture/2022/12/60e5d4e39da7c077.webp)
    no-repeat center center;
    background-size: cover;
    }
  • 文章打赏彩蛋,见主题配置文件:_config.butterfly.yml

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    # Sponsor/reward
    reward:
    enable: true
    coinAudio: https://npm.elemecdn.com/akilar-candyassets@1.0.36/audio/aowu.m4a
    QR_code:
    - img: https://tuchuang.voooe.cn/images/2023/01/04/2.webp
    link:
    text: 微信
    - img: https://tuchuang.voooe.cn/images/2023/01/04/20f8e49805975b8f8.webp
    link:
    text: 支付宝
  • 哔哔页面样式部分:见source\personal\bb\index.md

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    ---
    title: 唠叨
    date: 2022-09-08 23:08:13
    comments: false
    ---

    <style>
    /* 哔哔页面 */
    #bibi button {
    color: #fff;
    border: 0;
    margin: 20px auto;
    border-radius: 0.3125rem;
    display: block;
    padding: 0 1rem;
    height: 40px;
    font-weight: 500;
    text-align: center;
    transition: all 0.5s ease-out;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 1000% 1000%;
    animation: Gradient 60s linear infinite;
    outline: 0;
    }

    #bibi .bb-info {
    font-weight: 700;
    font-size: 22px;
    }

    #bibi .bb-card {
    padding: 15px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #a5a5a5ee;
    margin-top: 20px;
    transition: all 0.25s;
    user-select: none;
    width: calc(48% - 7px);
    margin: 10px;
    }

    @media screen and (max-width: 800px) {
    #bibi .bb-card {
    width: 100%;
    }
    }

    #bibi .bb-card:hover {
    box-shadow: 0 5px 10px 8px #07111b29;
    transform: translateY(-3px);
    }

    #bibi .card-header {
    display: flex;
    align-items: center;
    }

    #bibi .card-header .avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 10px;
    border-radius: 20px;
    overflow: hidden;
    }

    #bibi .card-header svg {
    height: 20px;
    width: 20px;
    margin-left: 5px;
    }

    #bibi .card-header .card-time {
    font-size: 12px;
    text-shadow: #d9d9d9 0 0 1px, #fffffb 0 0 1px, #fffffb 0 0 2px;
    margin-left: 10px;
    }

    #bibi .card-content {
    padding: 10px 0;
    white-space: pre-wrap;
    }

    #bibi .card-footer {
    display: flex;
    padding-bottom: 10px;
    }

    #bibi .card-footer .card-label {
    border-radius: 5px;
    padding: 0 5px;
    font-weight: 550;
    border-radius: 5px;
    box-shadow: inset 0 -1px 0 rgb(27 31 35 / 12%);
    font-size: 14px;
    user-select: none;
    margin-right: 10px;
    }

    div#bb_loading img{
    border-radius: 15px;
    }

    #bb-main {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    }

    </style>

    <script src="/js/bibi.js"></script>

    <div id="bibi">
    <div class="bb-info"></div><div id="bb-main"></div>
    </div>

  • 哔哔的API请见source\js\bibi.js,部署教程:哔哔部署

  • 欢迎信息地理位置显示,这个需要配置自己的 key,类似的还有 bibi 的配置、朋友圈等配置均需要参考相关文档改成自己的 API

  • 个人信息卡片的图标和菜单栏等图标,参考博客魔改教程总结(二)中的第 4-7 项

  • 其余配置项基本与 Butterfly 兼容,参考Butterfly 官方文档即可

  • 遇到问题请多看相关文档(Hexo 主题文档、Butterfly 主题文档、店长的教程)和本站教程,若有其他疑问请加 Q 群:691942826 验证回答:🥝开源项目

🌟Star概况

Star History Chart