Package Exports
- vuepress-plugin-typedjs2
- vuepress-plugin-typedjs2/dist/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (vuepress-plugin-typedjs2) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
vuePress2.x 打字机效果插件
快速开始
使用npm
安装
npm i vuepress-plugin-typedjs2 -D
开始使用和配置
使用方法
// config.js/ts
// 导入插件
import vuepressPluginTypedjs2 from "vuepress-plugin-typedjs2";
// 配置参数
plugins: [
vuepressPluginTypedjs2({
// 路径白名单(默认是所有页面生效,如果配置了白名单,那么只有白名单页面才会生效,支持*通配符)
withePathList: ['/'],
// 对应的标签选择器
selector: '#typed',
// 打字内容
strings: ["总有一个功能会让你眼前一亮🎉 ^2000", "左下角可以播放音乐喵 ♪ 💕^2000"],
typeSpeed: 60, // 打字速度
backSpeed: 30, // 回退速度
loop: true, // 循环
}),
],
// md文件
// vuepress-theme-hope为例
---
home: true
icon: home
title: 主页
link: /
bgImage: /assets/image/home_bg.svg
bgImageDark: /assets/image/home_bg.svg
bgImageStyle:
background-attachment: fixed
heroFullScreen: true
heroText: 一个文档主页
tagline: <span id="typed"></span>
---
配置说明
本插件直接将typed.js封装了,可以使用 typed 的全部配置 typed
使用技巧
如果您需要暂停打字效果,请使用
^
+ 时间,就是在该地方停留多久,单位是毫秒
{
strings: ["Hello ^1000 world.", "The typed npm ^2000"]
}