gpt4 book ai didi

css - 顺风 CSS : display text on image hover

转载 作者:行者123 更新时间:2023-12-04 11:49:29 25 4
gpt4 key购买 nike

如何使用 Tailwind CSS 在图像悬停时显示文本:在图像悬停时显示文本?
这是我的头像?我希望在用户悬停图像时显示文本“哺乳动物”?

<img src="/img/cat/categories/mammals.png" alt="mammals" class="max-w-full max-h-full">

最佳答案

我更喜欢使用相对位置和绝对位置,因为它给了我更多的工作选择。查看此代码 Display text on hover

<div class="w-64 h-64 bg-red-100 relative">
<div class="absolute inset-0 bg-cover bg-center z-0" style="background-image: url('https://upload.wikimedia.org/wikipedia/en/3/3c/JumanjiTheNextLevelTeaserPoster.jpg')"></div>
<div class="opacity-0 hover:opacity-100 duration-300 absolute inset-0 z-10 flex justify-center items-center text-6xl text-white font-semibold">Dwayne</div>
</div>

关于css - 顺风 CSS : display text on image hover,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65917029/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com