“CSS przesuwa animację” Kod odpowiedzi

CSS przesuwa animację

article {
    animation-name            : displaceContent;
    animation-duration        : 1s;
    animation-delay           : 4s;
    animation-iteration-count : 1;
    animation-fill-mode       : forwards;
}
@keyframes displaceContent {
    from { transform : translateY(0em) }
    to   { transform : translateY(3em) } /* slide down to make room for advertisements */
}
Inexpensive Ibis

CSS przesuwa animację

article {
    animation-name            : displaceContent;
    animation-duration        : 1s;
    animation-delay           : 4s;
    animation-iteration-count : 1;
    animation-fill-mode       : forwards;
}
@keyframes displaceContent {
    from { transform : translateY(0em) }
    to   { transform : translateY(3em) } /* slide down to make room for advertisements */
}
Nilser Cayo

Odpowiedzi podobne do “CSS przesuwa animację”

Pytania podobne do “CSS przesuwa animację”

Więcej pokrewnych odpowiedzi na “CSS przesuwa animację” w CSS

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu