forked from AlanDecode/Typecho-Theme-VOID
-
Notifications
You must be signed in to change notification settings - Fork 0
/
advanceSetting.sample.json
146 lines (125 loc) · 4.65 KB
/
advanceSetting.sample.json
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
// 这是一份高级配置示例文件
// 你可以挑选其中某些设置,填写到主题后台「超高级」设置框中
// 填写的内容必须符合 JSON 格式,因此你必须 去掉 以 // 打头的所有注释!!!
{
// 自定义左上角显示的站点名
"name" : "A Panda.",
// 为站点标题设置自定义字体,
"brandFont": {
"src": " ", //填写字体文件链接,例如 "https://my.com/font.ttf"
"style": "normal", // 字体样式,例如 normal, italic...
"weight": "normal" // 字重,例如 normal, bold, 300, 400...
},
// 桌面端头图高度,数值为高度占屏幕高度的百分比
"desktopBannerHeight" : 30,
// 移动端头图高度,数值为高度占屏幕高度的百分比
"mobileBannerHeight" : 30,
// 导航栏模式,随滚动显隐(0),固定(1),不固定(2)
"headerMode": 1,
// 移动端导航栏模式,同上。不设置时默认与 headerMode 一致
"headerModeMobile": 0,
// 文章字号。当用户在前端自己设置后,该选项会被覆盖。默认为 18px。
// 1: 14px, 2: 16px, 3: 18px, 4: 20px, 5: 22px
"defaultFontSize": 3,
// 对代码启用 Fira Code 字体。Fira Code 字体有漂亮的 ligature 特性
// 由 Google Fonts 提供支持,可能延长页面加载时间
"useFiraCodeFont": false,
// 在图片下方显示图题
"parseFigcaption": true,
// 社交 ID,用于生成分享链接
"twitterId": "AlanDecode",
"weiboId" : "古早日剧成瘾患者",
// 评论折叠阈值
// 例如设置为 [5, 1.5] 表示点踩者大于 5 人,且点踩者达到点赞者 1.5 倍时折叠评论
"commentFoldThreshold": [5, 1.5],
"commentNotification": "请不要水评论",
// 夜间模式时间段
"darkModeTime" : {
"start": 22.5, // 晚 22 点 30 分开始
"end": 7.0 // 直到早 6 点 59 分
},
// 当操作系统为深色主题时主题颜色自动切换,仅在 macOS 10.14.4 及以上版本的 Safari 中可用
"followSystemColorScheme" : true,
// 大图集
"largePhotoSet": true,
// 模糊懒加载。通过提供小缩略图,以实现渐变加载效果。目前支持又拍云与七牛云 CDN。
// 其中又拍云请把图片处理间隔符设置为 !
"bluredLazyload": false,
"CDNType": {
"static.imalan.cn": "UPYUN" // UPYUN, QINIU
},
// Mac 风格代码块
"macStyleCodeBlock": true,
// 代码块行号支持
"lineNumbers": true,
// 自定义添加社交链接
"link" : [
{
"name": "GitHub",
"icon": "github",
"href": "https:\/\/github.com\/AlanDecode",
"target": "_blank"
},
{
"name": "微博",
"icon": "weibo",
"href": "https:\/\/weibo.com\/5245109677",
"target": "_blank"
},
{
"name": "Twitter",
"icon": "twitter",
"href": "https://twitter.com/AlanDecode",
"target": "_blank"
},
{
"name": "QQ",
"icon": "qq",
"href": "https://shang.qq.com/wpa/qunwpa?idkey=4ed2406c1d84b70c319c8ee79752d1704702b770aa0da405ca0f274e4d4db5f8",
"target": "_blank"
}
],
// 自定义添加导航栏下拉列表
"nav" : [
{
"name" : "捉迷藏",
"items" : [
{
"link" : "http:\/\/t.me\/imalanblog",
"title" : "Telegram 群",
"target" : "_self"
},
{
"link" : "https:\/\/shang.qq.com\/wpa\/qunwpa?idkey=4ed2406c1d84b70c319c8ee79752d1704702b770aa0da405ca0f274e4d4db5f8",
"title" : "QQ 群组",
"target" : "_blank"
},
{
"link" : "https:\/\/weibo.com\/5245109677",
"title" : "新浪微博"
},
{
"link" : "https:\/\/twitter.com\/AlanDecode",
"title" : "Twitter"
},
{
"link" : "https:\/\/github.com\/AlanDecode",
"title" : "GitHub"
}
]
},
{
"name" : "秘密花园",
"items" : [
{
"link" : "https:\/\/www.imalan.cn",
"title" : "引导页"
},
{
"link" : "https:\/\/api.imalan.cn",
"title" : "熊猫 API"
}
]
}
]
}