@talltotal/vuepress-plugin-ppt
v0.0.6
Published
ppt plugin for vuepress
Downloads
11
Maintainers
Readme
@talltotal/vuepress-plugin-ppt
install
yarn add -D @talltotal/vuepress-plugin-ppt
# OR npm install -D @talltotal/vuepress-plugin-ppt
Usage
在 config.js
中引入
module.exports = {
plugins: ['@talltotal/vuepress-plugin-ppt']
}
在 md 文档中使用
- 在
frontmatter
增加 ppt 组件的配置,以及一些隐藏其他页面元素的设置showPage
Boolean 是否显示分页下标listStyle
Object 页面自定义样式,以页码为key
- 正文部分用
::: ppt
+:::
包裹,中间以----
为分页标识
另外,最好在组件外加个容器或自定义布局
Additionally, you can add a container or custom layout outside the component
---
navbar: false
# ppt options
ppt:
title: '@talltotal/vuepress-plugin-ppt'
# whether to display pagination
showPage: true
# custom style apply on each page
baseStyle: 'text-shadow: 0 0 2px rgba(0,0,0,0.2);'
# custom page-style with page number as 'key'
listStyle:
1: 'background-image: url(/imgs/bg.jpg)'
---
::: ppt
# page one
xxxx
----
# page two
xxxx
----
# page three
xxxx
:::
操作
- 键盘
- ⬆️⬅️:上一张
- ⬇️➡️:下一张
- 手势
- 向左划:上一张
- 向右划:下一张