JSFiddle - React, Tailwind, and code Playground

by kougiland

HTML

<span>&dtrif;</span>

CSS

span {
position: relative;
font-size: 200px;
-webkit-animation: bounce 1s infinite ease;
-moz-animation: bounce 1s infinite ease;
-ms-animation: bounce 1s infinite ease;    
-o-animation: bounce 1s infinite ease;
animation: bounce 1s infinite ease;
}

@-webkit-keyframes bounce {  
    0%, 100%   { top: 0; } 
    50%   { top: 40px; }
}
@-moz-keyframes bounce {  
    0%, 100%   { top: 0; } 
    50%   { top: 40px; }
}
@-ms-keyframes bounce {  
    0%, 100%   { top: 0; } 
    50%   { top: 40px; }
}
@-o-keyframes bounce {  
    0%, 100%   { top: 0; } 
    50%   { top: 40px; }
}
@keyframes bounce {  
    0%, 100%   { top: 0; } 
    50%   { top: 40px; }
}