JSFiddle - React, Tailwind, and code Playground

by rwaldin

HTML

<div class="rotZ">
    <div class="rotX">
        <div class="rotY">
            <div class="circle"/>
        </div>
    </div>
</div>

CSS

body {
    margin: 200px;
}
.circle {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    background-color: rgba(153,0,26,.5);
        webkit
}
.rotZ {
    -webkit-animation-name: spinz 5s linear infinite;

}