css 将标题置于图像上并仅在悬停时显示。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 将标题置于图像上并仅在悬停时显示。相关的知识,希望对你有一定的参考价值。

/* Position title and hide it by default */
.envira-gallery-item-inner .title {
   opacity: 0;
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%,-50%);
   
   /* Optional: add transitions so the title smoothly fades in/out on hover */
   -webkit-transition: opacity 0.5s ease;
   -moz-transition: opacity 0.5s ease;
   -o-transition: opacity 0.5s ease;
   transition: opacity 0.5s ease;
}

/* Show title on hover */
.envira-gallery-item-inner:hover .title { opacity: 1; }

以上是关于css 将标题置于图像上并仅在悬停时显示。的主要内容,如果未能解决你的问题,请参考以下文章

仅在悬停时显示按钮

css 仅在悬停时显示WP管理栏

Tailwind CSS:在图像悬停时显示文本

css 淡出图像并在悬停时显示标题。

css 淡出图像并在悬停时显示标题。

如何默认隐藏键盘并仅在单击 EditText 时显示 [重复]