首页 >web前端 >css教程 >如何使用真实文本在悬停时在图像上显示文本?

如何使用真实文本在悬停时在图像上显示文本?

Patricia Arquette
Patricia Arquette原创
2024-12-12 16:37:10381浏览

How Can I Display Text Over an Image on Hover Using Real Text?

使用真实文本在悬停时显示文本

您可以使用真实文本而不是图像精灵在悬停时在图像上显示文本。操作方法如下:

将要在悬停时显示的图像和描述包含在容器 div 内。此 div 的尺寸应与图像相同。


 <img  class="img__img" src="%E2%80%9Chttp://placehold.it/257x200.jpg%E2%80%9D/" alt="如何使用真实文本在悬停时在图像上显示文本?" ><br> <p></div>


将以下 CSS 分配给容器 div (.img__wrap):

.img__wrap {
  position: relative;
  height: [Set to match image height];
  width: [Set to match image width];
}

将文本描述绝对定位在容器 div 内(.img__description).


.img__description {<br> 位置:绝对;<br> 顶部:0 ;<br> 底部:0;<br> 左:0;<br> 右: 0;<br> 背景:rgba(0, 0, 0, 0.7);<br> 颜色:#fff;<br> 可见性:隐藏;<br> 不透明度: 0;<br>}<pre class="brush:php;toolbar:false"></div>
</div>

Make the text description visible and opaque on hover by adding the following CSS:

<div>


使用此解决方案,当用户将鼠标悬停在图像上时,您的文本描述将显示在图像上结束了。

以上是如何使用真实文本在悬停时在图像上显示文本?的详细内容。更多信息请关注PHP中文网其他相关文章!

css using class this display position background http
声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
上一篇:What are the CSS Selector Limits in Internet Explorer and How Do They Differ Across Versions?下一篇:How Can I Fade Text into a Background Image Using CSS Gradients?

相关文章

查看更多