This commit is contained in:
YiningHua 2018-12-10 00:42:49 -05:00
parent 7558715054
commit ee61e81b24
2 changed files with 13 additions and 1 deletions

1
e.html
View File

@ -7,7 +7,6 @@
[e] {
word-wrap:break-word;
}
</style>
</head>
<body>

13
e.pug Normal file
View File

@ -0,0 +1,13 @@
doctype html
head
title e
style.
[e] {
word-wrap:break-word;
}
h1(e='') e
script.
let e = document.querySelector("[e]");
setInterval(() => {
e.innerHTML += "e";
}, 1);