我在父 div 中有 2 个 h3 元素,类为“entry”
<div class="entry">
<h3 class="productsHover">
<a><img src="image.png" /></a>
</h3>
<h3>
<a>Drillrigs</a>
</h3>
</div>
现在,当您将鼠标悬停在图像上时,它具有由 CSS 定义的过渡效果:
h3.productsHover img{
position: relative;
margin-right: 10px !important;
left: 0px;
-webkit-transition: all 0.2s ease 0s;
-moz-transition: all 0.2s ease 0s;
-o-transition: all 0.2s ease 0s;
transition: all 0.2s ease 0s;
}
h3.productsHover img:hover{
left: 6px;
}
我不想将它们添加到h3.productsHover
应用悬停效果的同一个父元素()中。它们(图像和文本)应保留在单独的h3
标签中
问题:那么当实际上将鼠标悬停在 h3 文本元素上时,如何调用图像上的悬停效果?
并不是说我不想在整个父元素 ( .entry
) 上应用悬停效果,因为它还包含许多其他图像和h3
标签。
此外,类只能通过 JS 添加,而不是在 html 中添加(正常方式)。