Answers for "animation of an element using javascript"

6

js add animation to element

document.getElementById('test').style.animation = 'fading 2s infinite'
Posted by: Guest on January-18-2021
0

js add animation to element

#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; }
}
Posted by: Guest on January-18-2021

Code answers related to "animation of an element using javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language