JSFiddle - React, Tailwind, and code Playground

by Vitaliy

HTML

Задержка анимации 5 секунд
<img src="http://www.nickjr.co.uk/global/images/thumbnails/create/poppy-cat_1.jpg">

CSS

img{
    animation-name:show-img;
    animation-duration:1s;
    animation-iteration-count:infinite;
    animation-delay:5s;
    visibility:hidden;
    display:block;
    margin:20px;
}
@keyframes show-img{
    from{visibility:visible; transform:rotateZ(180deg);}
    to{transform:rotateZ(0);}
}