CSS 中的 :hover 方法仅在您想将鼠标悬停在某个元素上并更改该特定元素的颜色时才有效,而更改单独的元素则无效。换句话说,您需要做一些简单的 JQuery。如果您不熟悉 JQuery,请不要担心,我将引导您完成所需的步骤。如果您熟悉 Jquery 并且已经拥有该库,请跳到第 3 步,我将为您提供使其工作的确切代码。这看起来非常漫长和痛苦,但这只是因为我试图尽可能彻底。其实很简单
第 1 步:如果您不知道 JQuery 是什么,那么 JavaScript 已经被重写为更简单(在我看来)的语法。然而,为了让 JQuery 工作,您需要在jquery.com免费下载库(语法) 。当您访问该网站时,单击下载选项卡,然后下载 JQuery 的压缩生产版本。当您单击它进行下载时,将打开一个包含所有代码的页面。将其全部复制并粘贴到您的文本编辑器中,并使用.js扩展名保存。例如:jquery-library.js。
提示:确保它与您正在使用的所有其他 html 和 css 文档位于同一文件夹中。
第 2 步:将您的 html 与您下载的 Jquery 库链接,如下所示:
<head>
<script type="text/javascript" src="the name of your jquery library file.js"></script>
</head>
第 3 步:在文本编辑器中创建一个扩展名为 .js 的新文件。例如:背景颜色.js。您还需要将其与您的 html 页面链接。转到您的 html 页面并在第一个 < script > 标签正下方的 < head > 部分中,键入:
<script type="text/javascript" src="the name of your javascript file.js"></script>
html 中的 <head> 部分现在应该如下所示:
<script src="the name of your jquery library file.js"></script>
<script src="the name of your javascript file.js"></script>
第 4 步:您需要先对 html 进行一些简单的更改。第二个和第三个 <p> 元素都需要类,以便 JQuery 可以识别它们:
<div class="app">
<p> First paragraph </p>
<div class="active">
<p class="second"> Second paragraph </p>
</div>
<br>
<div>
<p class="third"> Third paragraph </p>
</div>
第 5 步:现在为 JQuery。如果您不理解语法也没关系,只需将其复制并粘贴到您的 .js 文档中: 提示:我添加了注释以尽可能多地解释每个字符串。// 后面一行的任何内容都是注释。
$(document).ready(function(){ // <-- this string tells the browser to perform the following action once the page has fully loaded
$(".third").mouseenter(function(){
$(".second").css("background-color", "#9CF"); // change this css color to whatever background color you want
}); // when the mouse enters the class "third", the background color of the class "second"
// changes to #9CF
$(".third").mouseleave(function(){
$(".second").css("background-color", "#FFF"); //change this css color to whatever your default background is
}); // when the mouse leaves the class "third", the background color of the class "second"
// changes back to default
});
我希望这会有所帮助。如果某些东西不起作用,请告诉我,但我在 safari 和 firefox 中对其进行了测试,它是非常基本的 JQuery,因此它应该可以在任何地方工作。请记住,在移动设备上,您不能将鼠标悬停,因此请尽量不要将其作为您网站的重要组成部分。