typing-animation
v1.0.13
Published
```javascript npm install typing-animation --save ```
Downloads
15
Readme
安装
npm install typing-animation --save
使用
方法一:直接引用(node_modules/typing-animation/browser/typing-animation.js)
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<div class="container"></div>
<script type="text/javascript" src="browser/typing-animation.js"></script>
<script type="text/javascript">
typingAnimation({
content: "test1\ntest2\ntest3",
selector: document.querySelector('.container'),
lineTimer: 1000
});
</script>
</body>
</html>
方法二:使用webpack
index.js
var typing = require('typing-animation');
typing({
content: "test1\ntest2\ntest3",
selector: document.querySelector('.container'),
lineTimer: 1000
});
编译:
webpack index.js bundle.js
引入:
<script type="text/javascript" src="bundle.js"></script>