I'm facing an issue where text appears when someone hovers over a group, causing a dizzy feeling due to auto formatting during resize. I'd like to delay the text from showing up until the resize is complete. Is there a way to achieve this without using JS in a 100% tailwind manner?
<div class="flex flex-row h-screen bg-white">
<div class="group justify-center flex items-center hover:grayscale min-h-full transition-width transform delay-200 duration-500 bg-black xl:hover:w-3/4 w-full md:w-1/2 lg:w-1/3 xl:w-1/4" style="background-image:url('https://64.media.tumblr.com/68695898ecdfe0aec572b7c008def47f/1bbd6bfe09e82b49-4b/s1280x1920/27ddc6b47bd3b099920371ea489b6328965a868d.jpg'); background-size: cover; background-position:center;">
<div class="justify-center font-black content-between w-full flex items-center text-3xl uppercase bg-gray-900 h-full shadow-2xl text-white text-center font-medium" style="background-color: rgba(0,0,0,0.3);">
<div class="invisible md:visible font-logo opacity-80 justify-center font-black content-between w-full flex items-center text-3xl uppercase bg-gray-900 h-24 shadow-3xl text-white text-center font-medium group-hover:hidden">
profiles
</div>
<div class="font-logo hidden group-hover:flex justify-center content-between w-full h-full items-center text-white text-center font-medium p-2" style="background-color: rgba(0,0,0,0.6);">
Bicycle rights salvia jean shorts glossier portland subway tile copper mug everyday carry photo booth hashtag kale chips taxidermy street art lo-fi church-key.
</div>
</div>
</div>
<!-- More similar code blocks with different images and text here -->
</div>