0

ちょっとしたナビゲーション バーとして機能する 5 つのリンクがあります。最初は水色です。そのうちの 1 つにカーソルを合わせるかクリックすると、色が変わり、別のリンクが選択されるまでその色を保持したいと思います。

私は解決策をよく探しましたが、多くの解決策がありますが、それらはすべて特定のケースに対応しているようで、それらを適応させることができないようです.

どんな助けでも大歓迎です。

ここに私のhtmlがあります。cssファイルもあり、見た目もきれいです。

 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org /TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml">

<head>


  <script src="http://code.jquery.com/jquery-1.9.1.js"></script>

  <script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>

  <script>

  $(function() {

    $( "#tabs" ).tabs({

      event: "mouseover"

    });

  });


  </script>

<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>Menu bar</title>
<style type="text/css" />
</style>

  <link href="navPanelStyle.css" rel="stylesheet" type="text/css" />

</head>

<body>

 <div id="tabs">

  <div id="topBar">
  <ul>

    <li><a href="#Booking">BOOKINGS</a></li>

    <li><a href="#Rooms">ROOMS</a></li>

    <li><a href="#news">NEWS</a></li>

    <li><a href="#Specials">SPECIALS</a></li>

    <li><a href="#About_us">ABOUT US</a></li>

  </ul>
  </div>
<div id="content_Wrapper">
  <div id="Booking">

<p>Bookings</p>
  </div>

  <div id="Rooms">

<p>Rooms</p>
  </div>

  <div id="news">


<p>news</p>
  </div>


  <div id="Specials">

<p>Specials</p>

  </div>



  <div id="About_us">

<p>About us</p>

  </div>


</div>
</div>


</body>

</html>
4

2 に答える 2