Skip to content

Commit

Permalink
📃 docs: 文档更新
Browse files Browse the repository at this point in the history
  • Loading branch information
白云苍狗 committed Mar 20, 2024
1 parent 8bada69 commit 6dba71b
Show file tree
Hide file tree
Showing 4 changed files with 127 additions and 1 deletion.
12 changes: 11 additions & 1 deletion demo/_config.async.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ top_bars:
url: /customize_page/
- title: 相册
url: /gallery/
- title: 日志
url: https://hexo-theme-async.imalun.com/guide/change-log
noswup: true

sidebar:
typedTextPrefix: I`m
Expand Down Expand Up @@ -141,4 +144,11 @@ layout:
page_loading: async/page-loading
post_card: async/post-card
fixed_btn: async/fixed-btn
# header_search: async/empty
# header_search: async/empty

banner:
danmu:
enable: true
avatar: true
delayRange: 5000
speed: 80
20 changes: 20 additions & 0 deletions demo/source/demo.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,28 @@
/* eslint-disable no-undef */
(() => {
// eslint-disable-next-line no-undef
console.log(
`%c 📌 添加自定义脚本 %c 这里啥也没有,测试自定义脚本执行`,
'color: white; background: #0078E7; padding:5px 0;margin: 0 0 2px 0;border-radius: 4px 0 0 4px;',
'padding: 4px;border:1px solid #0078E7;border-radius: 0 4px 4px 0; background: linear-gradient(70deg, #e3f9eb, #d1dbff);',
);

danMu(() =>
[
'举杯邀明月,对影成三人',
'会当凌绝顶,一览众山小',
'云想衣裳花想容,春风拂槛露华浓',
'二十四桥明月夜,玉人何处教吹箫?',
'月落乌啼霜满天,江枫渔火对愁眠。',
'两岸猿声啼不住,轻舟已过万重山。',
'泠泠七弦上,静听松风寒。',
'举杯邀明月,对影成三人',
'会当凌绝顶,一览众山小',
'云想衣裳花想容,春风拂槛露华浓',
'二十四桥明月夜,玉人何处教吹箫?',
'月落乌啼霜满天,江枫渔火对愁眠。',
'两岸猿声啼不住,轻舟已过万重山。',
'泠泠七弦上,静听松风寒。',
].map((text, id) => ({ id, text, avatar: '/demosite/img/avatar.jpg' })),
);
})();
14 changes: 14 additions & 0 deletions docs/.vitepress/assets/log.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@
{
"large_version": "v2.1.x",
"children": [
{
"version": "2.1.13",
"date": "2024-03-20",
"logs": [
{
"type": "feat",
"text": "添加 banner 弹幕动画"
},
{
"type": "style",
"text": "最小字体由 11px 调整为 12px"
}
]
},
{
"version": "2.1.12",
"date": "2024-03-18",
Expand Down
82 changes: 82 additions & 0 deletions docs/guide/config.md
Original file line number Diff line number Diff line change
Expand Up @@ -410,6 +410,88 @@ banner:

:::

### 弹幕动画

- `danmu`
- `enable`:是否开启弹幕动画插件
- `el`:弹幕填充区域,默认 banner 元素
- `avatar`:是否显示头像,默认 false
- `speed`:弹幕每秒滚动距离,默认每秒滚动 20px
- `height`:弹幕高度,默认 36px
- `gapWidth`:弹幕前后间隔,默认 20px
- `gapHeight`:弹幕上下间隔,默认 20px
- `delayRange`:延时范围时间,默认 5000 ms
- `align`:弹幕对齐方式,参考 align-items
- `mode`:弹幕区域大小,'half' | 'top' | 'full'

开启弹幕示例:

``` yaml
banner:
danmu:
enable: true
avatar: true
delayRange: 5000
speed: 80
```

开启后会在 window 挂载一个 danMu 方法,danMu 接收一个函数作为入参,函数调用返回需要加载弹幕数据

``` ts
declare type DanMuFun = ()=> Promise<DanMuData | DanMuData[]>;

declare type DanMuData = {
id: string | number;
text: string;
url?: string;
avatar?: string;
};

```

使用示例:

``` js
danMu(
() => [
'举杯邀明月,对影成三人',
'会当凌绝顶,一览众山小',
'云想衣裳花想容,春风拂槛露华浓',
'二十四桥明月夜,玉人何处教吹箫?',
'月落乌啼霜满天,江枫渔火对愁眠。',
'两岸猿声啼不住,轻舟已过万重山。',
'泠泠七弦上,静听松风寒。',
'举杯邀明月,对影成三人',
'会当凌绝顶,一览众山小',
'云想衣裳花想容,春风拂槛露华浓',
'二十四桥明月夜,玉人何处教吹箫?',
'月落乌啼霜满天,江枫渔火对愁眠。',
'两岸猿声啼不住,轻舟已过万重山。',
'泠泠七弦上,静听松风寒。'
].map((text, id) => ({ id, text }))
)
```

加载 twikoo 评论示例:

``` js
twikoo && danMu(
() => twikoo.getRecentComments({
envId: 'id',
urls: [location.pathname].filter(i => i !== '/'),
pageSize: 30,
includeReply: false
}).then(function (res) {
return res.map((item, i) => ({
id: item.id,
url: item.url,
text: item.commentText,
avatar: item.avatar,
}))
})
)
```

## 页脚 Footer

此配置在 `v1.1.7+` 新增,以前版本在 [用户信息-user](#用户信息-user) 配置。
Expand Down

0 comments on commit 6dba71b

Please sign in to comment.