You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
608 B

@keyframes triangle-skew-spin {
25% {
transform: perspective(100px) rotateX(180deg) rotateY(0); }
50% {
transform: perspective(100px) rotateX(180deg) rotateY(180deg); }
75% {
transform: perspective(100px) rotateX(0) rotateY(180deg); }
100% {
transform: perspective(100px) rotateX(0) rotateY(0); } }
.triangle-skew-spin > div {
animation-fill-mode: both;
width: 0;
height: 0;
border-left: 20px solid transparent;
border-right: 20px solid transparent;
border-bottom: 20px solid #6B6F82;
animation: triangle-skew-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite; }