vue-typed-js实现vue中文字打字输出动画效果代码

代码语言:html

所属分类:动画

代码描述:vue-typed-js实现vue中文字打字输出动画效果代码

代码标签: vue-typed-js vue 文字 打字 输出 动画

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html>

<head>
    <meta charset="UTF-8">
<link type="text/css" rel="stylesheet" href="//repo.bfw.wiki/bfwrepo/css/vue-typed-js.css">
<style>
    body{
        padding:100px;
    }
</style>
</head>

<body>
    <div id="app">
       <!-- infinite loop -->
<vue-typed-js :strings="['awesome', 'brilliant']" >
  <h2>We are a <span class="typing"></span> company!</h2>
</vue-typed-js>
<!-- type pausing -->
<vue-typed-js :strings="['This is text ^1000 which gets paused for 1 second', 'wow, interesting']">
  <h2 class="typing"></h2>
</vue-typed-js>

<!-- output html -.........完整代码请登录后点击上方下载按钮下载查看

网友评论0