html 图像悬停在另一个图像上

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 图像悬停在另一个图像上相关的知识,希望对你有一定的参考价值。

<style>
.imageBox {
  position: relative;
  float: left;
}

.imageBox .hoverImg {
  position: absolute;
  left: 0;
  top: 0;
  display: none;
}

.imageBox:hover .hoverImg {
    display: block;
}  
  
</style>


<div class="imageBox">
    <div class="imageInn">
        <img src="image1.jpg">
    </div>
    
    <div class="hoverImg">
        <img src="image2.jpg">
    </div>
</div>

以上是关于html 图像悬停在另一个图像上的主要内容,如果未能解决你的问题,请参考以下文章

JQuery - 图像的悬停事件在另一个图像后面

jquery悬停列表项并在另一个div中显示图像,列表是动态的

尝试在悬停时更改图像但获得 $var.attr 不是函数错误

新手需要鼠标悬停的帮助和 HTML 页面上的地图以在鼠标悬停时显示图像

HTML,CSS 悬停在图像上

将鼠标悬停在图像上以获取一个带有 html/JavaScript 中的多个链接的框