blink
This commit is contained in:
parent
bab8bbca12
commit
3de6782a51
1 changed files with 7 additions and 1 deletions
|
@ -18,6 +18,12 @@
|
||||||
font-family: 'silkscreennormal';
|
font-family: 'silkscreennormal';
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
.blink {
|
||||||
|
animation: blink 1s steps(5, start) infinite;
|
||||||
|
}
|
||||||
|
@keyframes blink {
|
||||||
|
to { visibility: hidden; }
|
||||||
|
}
|
||||||
#einladung {
|
#einladung {
|
||||||
font-family: 'silkscreennormal';
|
font-family: 'silkscreennormal';
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
@ -49,7 +55,7 @@
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<div id="loading">
|
<div id="loading">
|
||||||
loading...
|
loading<span class="blink">...</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div style="display: none" id="einladung" class="hyphenate" lang="de">
|
<div style="display: none" id="einladung" class="hyphenate" lang="de">
|
||||||
|
|
Reference in a new issue