1.0.13 • Published 7 years ago

typing-animation v1.0.13

Weekly downloads
1
License
ISC
Repository
-
Last release
7 years ago

安装

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>
1.0.13

7 years ago

1.0.12

7 years ago

1.0.11

7 years ago

1.0.10

7 years ago

1.0.9

7 years ago

1.0.8

7 years ago

1.0.7

7 years ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago