当有人将鼠标悬停在文本上时,我希望文本完全改变。我在网上找到了应该可以工作的代码,但它没有。有什么建议么?
<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 中。
提前致谢!