dance-comment
v1.1.3
Published
danceComment Let code be dance
Downloads
7
Maintainers
Readme
English | 简体中文
- example (default)
- use
import DanceComment from 'dance-comment'
new DanceComment().init()
const config = {
time: 1000,
useTemplate: true,
orderPlay: false
}
new DanceComment(config).init()
- example (javascript)
- use
import DanceComment from 'dance-comment'
import javascript from 'dance-comment/dist/template/javascript'
const config = {
time: 200,
useTemplate: false,
template: javascript
}
new DanceComment(config).init()
- parameter
name | type | default | explain -|-|-|- time | number | 10000 | replacement time MS (no replacement if less than 100ms) useTemplate | boolean | true | use the template provided by the plug-in template | array | [] | custom template orderPlay | boolean | true | whether to switch in order or not. False means random switching
config.template => array
[
[
' .--, .--, ',
' ( ( \\.---./ ) ) ',
" '.__/o o\\__.' ",
' {= ^ =} ',
' > - < ',
' / " ',
' // \\\\ ',
' //| . |\\\\ ',
" '\\ /''_.-~^`'-. ",
" \\ _ /--' ` ",
' ___)( )(___ ',
' (((__) (__))) '
],
[
" _._ _..._ .-', _.._(`)) ",
" '-. ` ' /-._.-' ',/ ",
" ) \\ '. ",
' / _ _ | " ',
' | a a / | ',
' \\ .-. ; ',
" '-('' ).-' ,' ; ",
" '-; | .' ",
' \\ \\ / ',
' | 7 .__ _.-\\ " ',
' | | | ``/ /` / ',
' /,_| | /,_/ / ',
" /,_/ '`-' "
]
]