当有人将鼠标悬停在文本上时,我希望文本完全改变。我发现在线代码应该可行,但事实并非如此。有什么建议吗?
<span class="show">
<p>if { <br /></p>
<p>yourSite < awesome; <br /></p>
<p>solution = aislingDouglas (HTML5 + CSS3 + <br /></p>
<p>JavaScript + PHP); <br /></p>
<p>} <br /></p>
<p>else { <br /></p>
<p>solution = null; <br /></p>
<p>} </p>
</span>
<span class="noshow">
<p>Need a website? <br /></p>
<p>You found your dream developer! <br /></p>
<p>And hey - I already helped you on the web, <br /></p>
<p>why not let me help you <br /></p>
<p>build an amazing site! <br /></p>
</span>
这是CSS:
.noshow, p:hover .show { display: none }
p:hover .noshow { display: inline }
我并不反对使用JavaScript(欢迎使用编码建议),但我更喜欢使用CSS。
提前致谢!
答案 0 :(得分:5)
你有正确的想法,有点......
目标是拥有一个容纳两个文本部分的容器元素。
当该元素被覆盖时,它被赋予伪类:hover
。使用此选择器,您可以适当地重新设置子项(下面,.first
和.second
)的样式。
请注意,我已将<span>
用于文本,<p>
用于下方的父级,但如果您希望使用块级别这样的孩子执行更多<p>
1}}元素,那么你应该使用<div>
作为父元素。
HTML:
<p class="hovertext">
<span class="first">This is what you see first</span>
<span class="second">But this shows up on mousehover</span>
</p>
CSS:
/* Hide the second piece of text by default */
p.hovertext .second {
display:none;
}
/* Hide the first piece of text on hover */
p.hovertext:hover .first {
display:none;
}
/* Re-show the second piece of text on hover */
p.hovertext:hover .second {
display:inline;
}
答案 1 :(得分:4)
我想你想要这样的东西:
<div class="wrap">
<div class="show">
<p>if { </p>
<p>yourSite
< awesome; </p>
<p>solution = aislingDouglas (HTML5 + CSS3 + </p>
<p>JavaScript + PHP); </p>
<p>} </p>
<p>else { </p>
<p>solution = null; </p>
<p>} </p>
</div>
<div class="noshow">
<p>Need a website? </p>
<p>You found your dream developer! </p>
<p>And hey - I already helped you on the web, </p>
<p>why not let me help you </p>
<p>build an amazing site! </p>
</div>
</div>
使用以下CSS:
.wrap {
outline: 1px dotted blue;
height: 300px;
}
.noshow, .wrap:hover .show {
display: none
}
.wrap:hover .noshow {
display: block
}
您需要一个外部容器来包装将要打开和关闭的两个块。
为获得最佳效果,请将高度设置为外部包装,否则您可以获得振荡显示/隐藏效果,因为由于文本数量不同,面板将自行调整大小,这意味着鼠标可能不会超过即将显示的面板,因此悬停状态将立即恢复为不悬停状态,从而重新触发显示/隐藏效果。