码迷,mamicode.com
首页 > Web开发 > 详细

VUE——使用easy-typer-js实现打字机效果

时间:2021-04-09 13:02:48      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:ttext   tps   sha   method   gets   sheng   mount   send   lse   

前言

github:https://github.com/pengqiangsheng/easy-typer-js

内容

安装

npm install easy-typer-js --save

封装

技术图片

print.js

import EasyTyper from ‘easy-typer-js‘
export default {
	data() {
		return {
			windowHeight: 0,
			obj: {
				output: ‘‘,
				isEnd: false,
				speed: 80,
				singleBack: false,
				sleep: 10,
				type: ‘custom‘,
				backSpeed: 40,
				sentencePause: false
			}
		}
	},
	methods: {
		initTyped(input) {
			const obj = this.obj
			const typed = new EasyTyper(obj, input)
		}
	},
}

index.js

import share from ‘./src/share.js‘;
import printText from ‘./src/print.js‘

export { share, printText } 

使用

<template>
	<view class="flex color_gradient" :style="{height:windowHeight+‘rpx‘}" @click="userDetail">
		<view class="flex justify-center align-center">
			<view class="text-white text-bold text-sl text-center padding">{{ obj.output }}
				<span class="typed-cursor">|</span>
			</view>
		</view>
	</view>
</template>

<script>
	import { printText } from ‘@/mixins/index.js‘
	export default {
		mixins: [printText],
		data() {
			return {
					windowHeight:0,
					 obj: {
					        output: ‘‘,
							speed: 100,
					      }
				}
		},
		created() {
			let that = this
			uni.getSystemInfo({
				success(res) {
					that.windowHeight = res.windowHeight*2
				}
			})
		},
		mounted() {
			this.initTyped(‘王洋‘)
		},
		methods: {
			userDetail(){
				wx.navigateTo({
				  url: ‘../info/index‘,
				})
			}
		}
	}
</script>

效果

技术图片

VUE——使用easy-typer-js实现打字机效果

标签:ttext   tps   sha   method   gets   sheng   mount   send   lse   

原文地址:https://www.cnblogs.com/wangyang0210/p/14633411.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!