vue实现打字机动画

想在自己的项目中用一下打字机的特效,之前用的是js写的,今天放到vue项目中试了一下,感觉还不错。

{{typewriter}}

data () { return { typewriter: '', i: 0, timer: 0, str: 'Hi, i´m a web Designer' } } mounted () { this.typeing() }, methods: { typeing () { if (this.i <= this.str.length) { this.typewriter = this.str.slice(0, this.i++) + '_' this.timer = setTimeout(() => { this.typeing() }, 150) } else { clearTimeout(this.timer) } } }

 

你可能感兴趣的:(vue)