Henry: Box nach X Sekunden verschwinden lassen.

Beitrag lesen

Hallo J,

es geht auch ohne JS und erst recht ohne Jquery, mit CSS Animation.


div {
padding:5%;
    margin:5%;
    width:200px;
    height:200px;
    background-color: #000;
    animation-name: houdini;
    animation-duration: 7s;
    animation-fill-mode: forwards;
}


@keyframes houdini{
    from {background-color: #000;}
    to {background-color: transparent;}
}

Als komplettes Beispiel, zum Testen, hier. (dort auf RUN klicken)

Gruss
Henry