Vue 实现打字机效果--ityped.js

// html template
<p class="desc" v-show="showDesc"><span>I'm </span><span ref="descStr"></span></p>


// import

import {init} from 'ityped';

// usage
const descStr: Element = this.$refs.descStr as Element;

init(descStr, {showCursor: true, strings: ['Collin.', 'a web developer.']});

 


版权声明:本文为tjzc1352640原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。