Bootstrap 3 を使用して、かなり単純な静的 Web サイトを構築しています。
ナビゲーションに関しては、デスクトップでは全幅のナビゲーション バーが必要で、モバイルでは「ハンバーガー」メニューが必要です。
そこで、Bootstrap の navbar-collapse を使用しました。
<nav class="navbar navbar-default">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html"><img src="images/logo.png" alt="" /></a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right press">
<li><a href="about.html">About</a></li>
<li><a href="faq.html">FAQ</a></li>
<li><a href="http://www.domain.com/blog/">Blog</a></li>
<li><a href="index-FR.html"><img src="images/FR-flag-icon.png" alt="French Version" /></a></li>
<li><a href="index.html"><img src="images/US-flag-icon.png" alt="English Version" /></a></li>
</ul>
</div>
</div>
</nav>
this oneまたはthat oneのような他の多くの同様の質問で示唆されているように、<head></head>
タグの間に次の行を含めて、最新の Bootstrap JS ファイルが含まれていることを確認しました。
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js" integrity="sha512-K1qjQ+NcF2TYO/eI3M6v8EiNYZfA95pQumfvcVrTHtwQVDG+aHRqLi/ETn2uB+1JqwYqVG3LIvdm9lj6imS/pQ==" crossorigin="anonymous"></script>
—————</p>
更新:私は次のインクルードも持っています<head></head>
:
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<link href="css/style.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/bootstrap.css" rel="stylesheet" type="text/css" media="all">
<!-- web-font -->
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,100,200,300,500,600,' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/animate.css">
<link rel="stylesheet" href="css/jquery.wordrotator.css">
<!-- web-font -->
<!-- js -->
<script src="js/jquery.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="keywords" content="email, productivity app, iphone app, clarity, peace" />
さらに、上記のコードの下には、いくつかのカスタム JS スクリプトもあります。
—————</p>
更新 2 : ここに私のブラウザー コンソール ログがあります。
http://localhost:8888/timyo/js/move-top.js Failed to load resource: the server responded with a status of 404 (Not Found)
http://localhost:8888/timyo/js/easing.js Failed to load resource: the server responded with a status of 404 (Not Found)
bootstrap.min.js:6 Uncaught Error: Bootstrap's JavaScript requires jQuery version 1.9.1 or higher
http://localhost:8888/timyo/images/themes.png Failed to load resource: the server responded with a status of 404 (Not Found)
base.js:1624 SVG's SMIL animations (<animate>, <set>, etc.) are deprecated and will be removed. Please use CSS animations or Web animations instead.
—————</p>
ただし、ブラウザでウィンドウのサイズを変更すると、ナビゲーション バーがハンバーガー メニューに変わりますが、ハンバーガー メニューはクリックできず、展開されません。
ここで何が間違っているのですか?