更新记录
2.0(2023-08-21) 下载此版本
支持uni_modules
1.0(2023-06-16) 下载此版本
上线了
平台兼容性
Vue2 | Vue3 |
---|---|
√ | √ |
App | 快应用 | 微信小程序 | 支付宝小程序 | 百度小程序 | 字节小程序 | QQ小程序 |
---|---|---|---|---|---|---|
HBuilderX 3.1.0 app-vue app-nvue | √ | √ | √ | √ | √ | √ |
钉钉小程序 | 快手小程序 | 飞书小程序 | 京东小程序 |
---|---|---|---|
√ | √ | √ | √ |
H5-Safari | Android Browser | 微信浏览器(Android) | QQ浏览器(Android) | Chrome | IE | Edge | Firefox | PC-Safari |
---|---|---|---|---|---|---|---|---|
√ | √ | √ | √ | √ | √ | √ | √ | √ |
欢迎使用 jp-typewriter 打字组件
安装方式
本组件符合easycom规范,HBuilderX 2.5.5
起,只需将本组件导入项目,在页面template
中即可直接使用,无需在页面中import
和注册components
。
有项目需要开发的请联系 QQ:371524845
开发不易,如果帮助到你的,请支持 有问题请留言,作者会积极更新
项目实例请查看 @/jp-layout/pages/index/index.vue
当你使用这个打字机效果的组件时,可以按照以下步骤进行操作: 引入组件:在需要使用打字机效果的页面或组件中,引入该打字机组件。例如,假设组件文件名为
<template>
<div>
<jp-typewriter :text="text" :cursorImg="cursorImg" :speed="speed" :textStyle="textStyle" @finished="typingFinished"></jp-typewriter>
</div>
</template>
<script>
export default {
data() {
return {
text: 'Hello, World!', // 要显示的文字内容
cursorImg: 'https://example.com/cursor.png', // 光标图片的 URL
speed: 100, // 打字速度,单位:毫秒
textStyle: {
color: 'red',
fontWeight: 'bold',
fontSize: '16px',
}, // 文字样式对象
};
},
methods: {
typingFinished() {
// 打字完成后的回调函数
console.log('Typing finished');
},
},
};
</script>
自定义属性:根据需要,修改组件中的属性来控制打字机效果的展示。 text:要显示的文字内容。 cursorImg:光标图片的 URL,如果不需要光标图片,可以将其设为空字符串。 speed:打字速度,单位为毫秒。 textStyle:文字样式对象,可以设置字体颜色、字体大小、字体粗细等样式。 事件监听:通过监听 @finished 事件,可以在打字完成后执行特定的操作。