پیشنمایش زنده
کد HTML
<div class="flex justify-center items-center h-screen">
<div class="animate-spin ease-linear rounded-full w-10 h-10 border-t-2 border-b-2 border-purple-500"></div>
<div class="animate-spin ease-linear rounded-full w-10 h-10 border-t-2 border-b-2 border-red-500 ml-3"></div>
<div class="animate-spin ease-linear rounded-full w-10 h-10 border-t-2 border-b-2 border-blue-500 ml-3"></div>
</div>
کد CSS
.ml-3 {
margin-left: 0.75rem
}
.flex {
display: flex
}
.h-10 {
height: 2.5rem
}
.h-screen {
height: 100vh
}
.w-10 {
width: 2.5rem
}
@keyframes spin {
to {
transform: rotate(360deg)
}
}
.animate-spin {
animation: spin 1s linear infinite
}
.items-center {
align-items: center
}
.justify-center {
justify-content: center
}
.rounded-full {
border-radius: 9999px
}
.border-b-2 {
border-bottom-width: 2px
}
.border-t-2 {
border-top-width: 2px
}
.border-blue-500 {
--tw-border-opacity: 1;
border-color: rgb(59 130 246 / var(--tw-border-opacity))
}
.border-purple-500 {
--tw-border-opacity: 1;
border-color: rgb(168 85 247 / var(--tw-border-opacity))
}
.border-red-500 {
--tw-border-opacity: 1;
border-color: rgb(239 68 68 / var(--tw-border-opacity))
}
.ease-linear {
transition-timing-function: linear
}