-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
20 lines (19 loc) · 851 Bytes
/
Copy pathscript.js
File metadata and controls
20 lines (19 loc) · 851 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
function fixTitle() {
if (window.innerWidth < 600) {
document.getElementById("ttl").style.fontSize = "150px";
}
else if (window.innerWidth < 753) {
document.getElementById("ttl").style.fontSize = "200px";
}
else if (window.innerWidth < 1366) {
document.getElementById("ttl").innerHTML = document.getElementById("ttl").innerHTML.replace(" ", "i")
document.getElementById("ttl-img").style.display = "none";
document.getElementById("ttl").style.fontSize = "225px";
}
else {
document.getElementById("ttl").innerHTML = document.getElementById("ttl").innerHTML.replace("i", " ")
document.getElementById("ttl-img").style.display = "flex";
document.getElementById("ttl").style.fontSize = "225px";
}
}
window.onresize = fixTitle;