普通视图

发现新文章,点击刷新页面。
昨天以前首页
  • ✇汐塔魔法屋
  • 为博客添加一个游戏收藏页(npm插件版)王九弦SZ·Ninty
    前言之前看到Kouseki大佬的这篇文章:为博客添加一个游戏收藏页我原本是想要给我博客搞这个的,但由于我一般会给博客的主题更新,导致魔改的内容消失思来想去,我还是决定做npm版本的游戏收藏页效果效果预览 安装安装插件,在博客根目录[Blogroot]下打开终端,运行以下指令: 1npm install hexo-butterfly-games --save添加配置信息,以下为写法示例在站点配置文件_config.yml或者主题配置文件_config.butterfly.yml中添加 123456789101112131415161718192021222324252627282930313233343536# Game Page# see https://akilar.top/posts/e2d3c450/games: enable: true name: 游戏世界 description: 我的游戏世界 tip: 跟 小屋屋主 一起探索世界 top_background: https://th.bing.com/th/id/R.13a97ef4830efa5
     

为博客添加一个游戏收藏页(npm插件版)

2024年1月19日 05:39

前言

之前看到Kouseki大佬的这篇文章:

我原本是想要给我博客搞这个的,但由于我一般会给博客的主题更新,导致魔改的内容消失
思来想去,我还是决定做npm版本的游戏收藏页

效果

安装

  1. 安装插件,在博客根目录[Blogroot]下打开终端,运行以下指令:
1
npm install hexo-butterfly-games --save
  1. 添加配置信息,以下为写法示例
    在站点配置文件_config.yml或者主题配置文件_config.butterfly.yml中添加
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
# Game Page
# see https://akilar.top/posts/e2d3c450/
games:
enable: true
name: 游戏世界
description: 我的游戏世界
tip: 小屋屋主 一起探索世界
top_background: https://th.bing.com/th/id/R.13a97ef4830efa5e0b87134d622719f3?rik=G7RaJFpxg5PtkA&riu=http%3a%2f%2fupload.techweb.com.cn%2fs%2f640%2f2019%2f0530%2f1559208230699.jpg&ehk=j1G8rMX98TRX52EkLgI5jW1p7lIQp4I8Si1nqEggFRs%3d&risl=&pid=ImgRaw&r=0&sres=1&sresct=1
buttonText: Steam
buttonLink: https://steamcommunity.com/
css: https://jsd.cdn.storisinz.site/npm/hexo-butterfly-games/lib/games.css
good_games:
- title: 风景一绝
description: 不会错过的风景
games_list:
- name: 怪物猎人:世界
specification: CAPCOM Co., Ltd.
description: "在新建构的「Monster Hunter: World」中, 可以体验到你一直期盼的极致猎人生活。"
image: https://cdn.max-c.com/heybox/dailynews/img/94376ca41326836587a137d5999733e5.jpg
link: https://www.xiaoheihe.cn/games/detail/582010

- title: 我的最爱
description: 我不能没有它了
games_list:
- name: GTA:5
specification: Rockstar Games
description: 谁还在买GTA5
image: https://imgheybox.max-c.com/heybox/game/header/271590_dXCCk.jpg
link: https://www.xiaoheihe.cn/games/detail/271590
path: games
front_matter: #【可选】games页面的 front_matter 配置
title: 游戏人生
comments: true
top_img: false
type: games
aside: false
  1. 参数释义
参数备选值/类型释义
enabletrue/false控制开关
nametext顶部标题
descriptiontext顶部副标题
tiptext顶部小标题
top_backgroundURL顶部背景链接
buttonTexttext按钮文字
buttonLinkURL按钮对应链接
good_games.titletext分类标题
good_games.descriptiontext分类副标题
good_games.games_list.nametext游戏名字
good_games.games_list.specificationtext游戏产商
good_games.games_list.descriptiontext游戏简介
good_games.games_list.imageURL游戏图片链接
good_games.games_list.linkURL游戏对应链接
cssURL【可选】开发者接口,自定义css链接
pathcomments【可选】games 的路径名称。默认为 games,生成的页面为 games/index.html
front_matterobject【可选】games 页面的 front_matter 配置,写法见上文示例
❌
❌