skip to Main Content

Is it possible to use `@apply` in tailwindcss for keyframes?

I need to apply the following entering and leaving animation They are presented using tailwindcss classes Entering: "transform ease-out duration-300 transition" From: "translate-y-2 opacity-0 sm:translate-y-0 sm:translate-x-2" To: "translate-y-0 opacity-100 sm:translate-x-0" Leaving: "transition ease-in duration-100" From: "opacity-100" To: "opacity-0" I tried…

VIEW QUESTION

Swipe hand icon animation with CSS – Html

html { background: #4F4F4F; } .path { content: ""; width: 20px; height: 20px; position: absolute; background: rgba(149, 147, 241, 0.5); border-radius: 40px; top: 28px; left: 78px; } .hand-icon { position: relative; background-image: url('https://i.postimg.cc/8556gm60/hand.png'); background-repeat: no-repeat; background-position: center; width: 100px; height:…

VIEW QUESTION
Back To Top
Search