UNPKG

typewrite-simple

Version:
22 lines (20 loc) 556 B
<!doctype 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 - Loop</title> </head> <body> <div id="typewrite"></div> <script src="../../dist/index.umd.js"></script> <script type="text/javascript"> const instance = new Typewrite('#typewrite', { strings: ['Hello', 'World'], autoStart: true, loop: true }) </script> </body> </html>