39 lines
740 B
HTML
Executable File
39 lines
740 B
HTML
Executable File
<div id="nojs" class="hidden">
|
|
<p>Please disable JavaScript in you browser configuration.<br />
|
|
Or wait <n id="tick"></n> seconds...</p>
|
|
</div>
|
|
<style type="text/css">
|
|
@property --tick { syntax: "<integer>"; initial-value: 0; inherits: false; }
|
|
@keyframes tick { from { --tick: 15; } }
|
|
@keyframes hide { from { width: 100%; height: 100%; } }
|
|
|
|
.hidden {
|
|
display: none;
|
|
}
|
|
|
|
.nojs {
|
|
display: block;
|
|
position: absolute;
|
|
padding: 0;
|
|
margin: 0;
|
|
left: 0;
|
|
top: 0;
|
|
right: 100%;
|
|
bottom: 100%;
|
|
width: 0;
|
|
height: 0;
|
|
overflow: hidden;
|
|
animation: hide 15s steps(1, end);
|
|
background: #fff;
|
|
}
|
|
|
|
#tick {
|
|
animation: tick 15s steps(15);
|
|
counter-reset: tick var(--tick);
|
|
}
|
|
|
|
#tick::after {
|
|
content: counter(tick);
|
|
}
|
|
</style>
|