[First version]
This commit is contained in:
commit
9a8fce5647
|
@ -0,0 +1,14 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>loading . . .</title>
|
||||||
|
<link rel="stylesheet" href="style.css">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="display">X</div>
|
||||||
|
|
||||||
|
<script src="script.js"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,14 @@
|
||||||
|
var index = 0;
|
||||||
|
|
||||||
|
const label = "XOY";
|
||||||
|
|
||||||
|
const display = document.getElementsByClassName("display")[0];
|
||||||
|
|
||||||
|
function iterate_characters() {
|
||||||
|
display.innerHTML = label.charAt(index);
|
||||||
|
index = (index == label.length - 1) ? 0 : index + 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
iterate_characters();
|
||||||
|
|
||||||
|
setInterval(iterate_characters, 1000);
|
|
@ -0,0 +1,31 @@
|
||||||
|
@font-face {
|
||||||
|
font-family: Novem;
|
||||||
|
src: url(Novem.ttf);
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes loading {
|
||||||
|
from {transform: scale(1);}
|
||||||
|
50% {transform: scale(2);}
|
||||||
|
to {transform: scale(1);}
|
||||||
|
}
|
||||||
|
|
||||||
|
html, body {
|
||||||
|
width: 100vw;
|
||||||
|
height: 100vh;
|
||||||
|
overflow: hidden;
|
||||||
|
padding: 0;
|
||||||
|
color: white;
|
||||||
|
background-color: black;
|
||||||
|
font-family: Novem;
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.display {
|
||||||
|
display: block;
|
||||||
|
width: 100px;
|
||||||
|
height: 100px;
|
||||||
|
margin: auto;
|
||||||
|
text-align: center;
|
||||||
|
font-size: 100px;
|
||||||
|
animation: loading 2s infinite;
|
||||||
|
}
|
Loading…
Reference in New Issue