JSFiddle - React, Tailwind, and code Playground

by mauricederegt

HTML

<div></div>

CSS

@keyframes slidein {
    0% {
        opacity: 0;
    }
    
    100% {
        opacity: 1;
    }
}

div {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 150px;
    right: 150px;
    background-color: black;
    opacity: 0;
    animation: slidein 1s ease 4s forwards;
}