typewrite-simple
Version:

30 lines (27 loc) • 737 B
HTML
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Example - Change Cursor</title>
</head>
<body>
<div id="typewrite"></div>
<script src="../../dist/index.umd.js"></script>
<script type="text/javascript">
const typewrite = new Typewrite('#typewrite', {
loop: true
})
typewrite
.typeString('Hello World!')
.pauseFor(2500)
.deleteAll()
.pauseFor(500)
.changeCursor('$')
.typeString('This is a new cursor')
.pauseFor(2500)
.start()
</script>
</body>
</html>