Created
November 12, 2023 05:18
-
-
Save fayazara/bd6a6c8ed330bf3f70daa81037757bd3 to your computer and use it in GitHub Desktop.
Rotating text with just tailwindcss
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div class="p-4 bg-gray-100 rounded-md border flex flex-col justify-center items-center overflow-hidden"> | |
<div class="font-extrabold text-lg [text-wrap:balance] text-gray-700"> | |
We design and develop the best | |
<span class=" inline-flex flex-col h-[calc(theme(fontSize.lg)*theme(lineHeight.tight))] overflow-hidden"> | |
<ul class="block text-left leading-tight [&_li]:block animate-text-slide"> | |
<li class="text-indigo-500">Mobile apps</li> | |
<li class="text-rose-500">Websites</li> | |
<li class="text-yellow-500">Admin dashboards</li> | |
<li class="text-teal-500">Landing pages</li> | |
<li class="text-pink-500">Illustrations</li> | |
<li class="text-sky-500">Icons</li> | |
</ul> | |
</span> | |
</div> | |
</div> | |
</template> | |
<style> | |
.animate-text-slide { | |
animation: text-slide 12.5s cubic-bezier(0.83, 0, 0.17, 1) infinite; | |
} | |
@keyframes text-slide { | |
0%, | |
16% { | |
transform: translateY(0%); | |
} | |
20%, | |
36% { | |
transform: translateY(-16.66%); | |
} | |
40%, | |
56% { | |
transform: translateY(-33.33%); | |
} | |
60%, | |
76% { | |
transform: translateY(-50%); | |
} | |
80%, | |
96% { | |
transform: translateY(-66.66%); | |
} | |
100% { | |
transform: translateY(-83.33%); | |
} | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment