feat: Add dynamic TLD using python
Some checks failed
Build Docker / Build Image (push) Failing after 14s

This commit is contained in:
2023-10-30 15:37:51 +11:00
parent 5767060441
commit 18b18bc2a2
12 changed files with 84 additions and 10 deletions

View File

@@ -0,0 +1,21 @@
function type(n, t) {
var str = document.getElementsByTagName("code")[n].innerHTML.toString();
var i = 0;
document.getElementsByTagName("code")[n].innerHTML = "";
setTimeout(function() {
var se = setInterval(function() {
i++;
document.getElementsByTagName("code")[n].innerHTML =
str.slice(0, i) + "|";
if (i == str.length) {
clearInterval(se);
document.getElementsByTagName("code")[n].innerHTML = str;
}
}, 10);
}, t);
}
type(0, 0);
type(1, 600);
type(2, 1300);