“JS Dodaj animację do elementu” Kod odpowiedzi

JS Dodaj animację do elementu

document.getElementById("tunnel").animate([
  // keyframes
  { transform: 'translateY(0px)' },
  { transform: 'translateY(-300px)' }
], {
  // timing options
  duration: 1000,
  iterations: Infinity
});
Unsightly Unicorn

JS Dodaj animację do elementu

var animation = element.animate(keyframes, options); 
DevLorenzo

JS Dodaj animację do elementu

let rotate360 = [
  { transform: 'rotate(360deg)' }
];
DevLorenzo

JS Dodaj animację do elementu

#test {
    background-color: blue;
    width: 100px;
    height: 100px;
    position: relative;
    -webkit-animation: fading 5s infinite;
    animation: fading 5s infinite;
}

/* Here is the animation (keyframes) */
@keyframes fading {
    0% { opacity: 1; }
    100% { opacity: 0; }
}
DevLorenzo

Odpowiedzi podobne do “JS Dodaj animację do elementu”

Pytania podobne do “JS Dodaj animację do elementu”

Więcej pokrewnych odpowiedzi na “JS Dodaj animację do elementu” w JavaScript

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

Przeglądaj inne języki kodu