[CSS] [proprietà] animation-delay

animation-delay (proprietà CSS) stabilisce il ritardo dell’animazione in secondi (s) o millisecondi (ms).

Sintassi

animation-delay: [tempo];
valore descrizione
XXX XXX

Esempi

<style> 
div#animazione_test {
    width: 150px;
    height: 150px;
    background: yellow;
    position: relative;
    animation: animazione_test 3s infinite;
    animation-delay: 5s;
}
@keyframes animazione_test {
    from {left: 0px;}
    to {left: 80%;}
}
</style>
<div id="animazione_test"></div>

Contenuti correlati

  • CSS
  • HTML
  • JavaScript
  • jQuery
  • PHP
  • SQL
  • WORDPRESS

Fonti esterne

css, proprietà css

Related Articles

0 Comment

Rispondi