是否可以通过将鼠标悬停在页面另一侧的完整单独的div中来显示div / imge?除此之外,是否可以在一个div中显示多个图像?
我希望创建一个网站,当你将鼠标悬停在div上时,可以看到div的图像,但是能够在同一个地方看到每个新图像。我希望我足够清楚,有人可以帮助我,谢谢你。
答案 0 :(得分:2)
以下是我的建议:您可以使用CSS同级选择器来访问隐藏的DIV。以下是我做过的简单示例:
CSS(带有一些样式)和HTML(带有虚拟段落以展示页面上的其他元素以及我已经在隐藏的DIV中放置了多个图像,因为您询问它是否可以在一个DIV中显示多个图像:
.first {
position: absolute;
padding: 10px;
border: 1px solid pink;
background-color: white;
text-align: center;
right: 100px;
bottom: 100px;
cursor: pointer;
}
.second {
display: none;
background: white;
border: 1px solid pink;
padding-left: 10px;
}
.first:hover ~ .second {
display: inline-block;
position: absolute;
top: 100px;
left: 100px;
}
img {
width: 100px;
height: 100px;
padding: 0;
border: 1px solid black;
margin: 10px;
margin-left: 0;
}

<div class="first">HOVER ME</div>
<p>Lorem Ipsum Dolor</p>
<p>Lorem Ipsum Dolor</p>
<p>Lorem Ipsum Dolor</p>
<p>Lorem Ipsum Dolor</p>
<p>Lorem Ipsum Dolor</p>
<p>Lorem Ipsum Dolor</p>
<p>Lorem Ipsum Dolor</p>
<div class="second">
<img src="http://placehold.it/100x100" alt="Dummy Image #1">
<img src="http://placehold.it/100x100" alt="Dummy Image #1">
<img src="http://placehold.it/100x100" alt="Dummy Image #1">
</div>
&#13;