1.3.5 • Published 3 years ago

cloudword v1.3.5

Weekly downloads
-
License
ISC
Repository
-
Last release
3 years ago

自动生成云文字的工具

使用 让标题像云彩一样动起来

npm install cloudword -S

// 在 main.js 里面引用
import cloudWord from 'cloudWord'

new cloudWord({
  el: '#cloudWord',
  words: ['one', 'two', 'three'],
  colors: ['red', 'yellow', 'green'],
  onClick(elem) {
    console.log('点击的文字信息:', elem)
  }
})

配置项

名称描述类型默认值是否必填
eldom 容器String|Document-
words要渲染的标题列表Array-
colors标题所渲染出来的颜色列表Array-
touchStop是否鼠标覆盖停止Booleantrue
minSize最小字体String | Number14
maxSize最大字体String | Number26
onClick自定义点击事件Function-

api 方法

const cloudWords = new cloudWord({
  el: '#cloudWord',
  words: ['one', 'two', 'three'],
  colors: ['red', 'yellow', 'green']
})
// 添加,删除,更新
cloudWords.addWord('four');
cloudWords.removeWord(3);
cloudWords.updateWord(3, 'five');
// 刷新
cloudWords.refresh()

效果展示

git clone https://github.com/jiayunfei/cloudwords.git 下载到本地

npm install
npm run serve

打开 http://localhost:3000 就可以查看效果

1.3.5

3 years ago

1.3.3

3 years ago

1.3.2

3 years ago

1.3.1

3 years ago

1.3.0

3 years ago

1.2.0

3 years ago

1.1.0

3 years ago

1.0.0

3 years ago