Compare commits
2 Commits
f012a8f74b
...
b25ed692db
Author | SHA1 | Date | |
---|---|---|---|
b25ed692db | |||
36528c129b |
@ -106,16 +106,21 @@ span {
|
||||
}
|
||||
50% {
|
||||
opacity: 100%;
|
||||
transform: translateY(0);
|
||||
transform: translateY(0) scaleY(1);
|
||||
line-height: var(--bs-body-line-height);
|
||||
}
|
||||
to {
|
||||
opacity: 0;
|
||||
transform: translateY(-100%);
|
||||
transform: translateY(-100%) scaleY(0);
|
||||
line-height: 0;
|
||||
}
|
||||
}
|
||||
|
||||
div.show-level-animation {
|
||||
animation: show-level-animation cubic-bezier(0.4, 0, 0.6, 1) 2s 1s;
|
||||
animation: show-level-animation;
|
||||
animation-timing-function: (0.4, 0, 0.6, 1);
|
||||
animation-duration: 2s;
|
||||
animation-delay: 1s;
|
||||
}
|
||||
|
||||
@keyframes zoom-in-animation {
|
||||
@ -167,12 +172,12 @@ div.show-level-animation {
|
||||
#messagesSpan div.rotate-in-animation {
|
||||
animation-name: rotate-in-animation;
|
||||
animation-timing-function: cubic-bezier(.25,.46,.45,.94);
|
||||
animation-duration: 1.5s;
|
||||
animation-duration: 1s;
|
||||
}
|
||||
|
||||
#messagesSpan div.zoom-in-animation {
|
||||
animation-name: zoom-in-animation;
|
||||
animation-timing-function: cubic-bezier(.25,.46,.45,.94);
|
||||
transform-origin:center;
|
||||
animation-duration: 1.5s;
|
||||
animation-duration: 1s;
|
||||
}
|
@ -83,7 +83,7 @@
|
||||
</div>
|
||||
<div class="col-sm-3">
|
||||
<output id="dasOutput" class="form-text form-text-sm w-100 m-auto text-center" for="dasInput">180 ms</output>
|
||||
<input name="das" id="dasInput" type="range" class="form-range h-100" value="180" min="100" max="500" step="10" oninput="dasOutput.value = value + ' ms'">
|
||||
<input name="das" id="dasInput" type="range" class="form-range h-100" value="180" min="100" max="500" step="5" oninput="dasOutput.value = value + ' ms'">
|
||||
</div>
|
||||
<label for="dasInput" class="col-sm-3 col-form-label" title="Delayed AutoShift : délai initial avant répétition">DAS</label>
|
||||
</fieldset>
|
||||
|
Loading…
x
Reference in New Issue
Block a user