“KLUCZOWE KLUCZOWE CSS” Kod odpowiedzi

@Keyframes

p {
  animation-duration: 25s;
  animation-name: slidein;
}

@keyframes slidein {
  from {
    margin-left: 100%;
    width: 300%;
  }
  75% {
    font-size: 300%;
    margin-left: 25%;
    width: 150%;
  }

  to {
    margin-left: 0%;
    width: 100%;
  }
}
Hurt Hare

KLUCZOWE KLUCZOWE CSS

@keyframes mymove {
  from {top: 0px;}
  to {top: 200px;}
}
Spotless Skylark

KLUCZOWA KLUCZ W CSS

@keyframes mymove {
  0% {top: 0px;}
  50% {top: 50px;}
  75% {top: 40px;}
  100%{top: 0px;}
}
Hurt Hyena

klatki kluczowe

/* @keyframes duration | easing-function | delay |
iteration-count | direction | fill-mode | play-state | name */
animation: 3s ease-in 1s 2 reverse both paused slidein;
Friendly Ferret

Odpowiedzi podobne do “KLUCZOWE KLUCZOWE CSS”

Pytania podobne do “KLUCZOWE KLUCZOWE CSS”

Więcej pokrewnych odpowiedzi na “KLUCZOWE KLUCZOWE CSS” w CSS

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

Przeglądaj inne języki kodu