You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
477 B
13 lines
477 B
import Typed from "typed.js"; |
|
|
|
document.addEventListener('DOMContentLoaded', function () { |
|
let options = { |
|
strings: ['open textbook', 'scholarly monograph', 'world-changing manifesto', 'graduate thesis', 'reference guide', 'essay collection', 'student portfolio', 'novel', 'position paper', 'handbook', 'magnum opus', 'research report', 'daybook', 'collected works'], |
|
typeSpeed: 80, |
|
backSpeed: 40, |
|
backDelay: 400, |
|
loop: true, |
|
}; |
|
|
|
new Typed('#typed', options); |
|
});
|
|
|