簡體   English   中英

引導輪播按鈕出現錯誤

[英]Bootstrap carousel buttons appearing wrong

對於我的網站,我在首頁上使用了引導輪播。 輪播工作,但由於某種原因,它沒有顯示下一個/上一個箭頭。 我可以單擊箭頭將推進旋轉木馬的位置。 如果有人想檢查這些元素,則該網站為codehighway.org 這也是主頁的代碼。 任何幫助都會很棒。

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Code Highway</title>

    <!-- Bootstrap -->
    <link href="bootstrap.min.css" rel="stylesheet">

  </head>
  <body>

<!-- Code for the nav-bar -->

<div class="navbar navbar-default">
  <div class="navbar-header">
    <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-responsive-collapse">
      <span class="icon-bar"></span>
      <span class="icon-bar"></span>
      <span class="icon-bar"></span>
    </button>
    <a class="navbar-brand" href="Home.html">Code Highway</a>
  </div>
  <div class="navbar-collapse collapse navbar-responsive-collapse">
    <ul class="nav navbar-nav">
      <li class="active"><a href="#">Lessons</a></li>
      <li class="dropdown">
        <a href="#" class="dropdown-toggle" data-toggle="dropdown">Portfolio <b class="caret"></b></a>
        <ul class="dropdown-menu">
          <li><a href="cs1.html">Computer Science 1</a></li>
          <li><a href="cs2.html">Computer Science 2</a></li>
          <li><a href="#">Algorithms and Data Structures</a></li>
        </ul>
      </li>
      <li><a href="Blog.html">Blog</a></li>
      <li><a href="About.html">About</a></li>
    </ul>
  </div>
</div>

<!-- End of nav-bar -->

<!-- Start of carousel -->

<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">

  <!-- Indicators -->
  <ol class="carousel-indicators">
    <li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
    <li data-target="#carousel-example-generic" data-slide-to="1"></li>
    <li data-target="#carousel-example-generic" data-slide-to="2"></li>
  </ol>

  <!-- Slider Content (Wrapper for slides )-->
  <div class="carousel-inner">
    <div class="item active">
      <img src="test.jpg" alt="quote"  style="float: none;margin:0 auto;display: block;">
      <div class="carousel-caption">
      </div>
    </div>
    <div class="item">
      <img src="test2.jpg" alt="quote"  style="float: none;margin:0 auto;display: block;">
      <div class="carousel-caption">
      </div>
    </div>
    <div class="item">
      <img src="test3.jpg" alt="quote"  style="float: none;margin:0 auto;display: block;">
      <div class="carousel-caption">
      </div>
    </div>    
  </div>

  <!-- Controls -->
  <a class="left carousel-control" href="#carousel-example-generic" data-slide="prev">
    <span class="glyphicon glyphicon-chevron-left"></span>
  </a>
  <a class="right carousel-control" href="#carousel-example-generic" data-slide="next">
    <span class="glyphicon glyphicon-chevron-right"></span>
  </a>
</div>


<!-- End of carousel -->  



<!-- Code for jumbotron -->

<div class="jumbotron">
  <h1>Start learning code</h1>
  <p>Hello, I'm Maurice this is my personal website. I show programming concepts, my portfolio of projects, and a blog where I give tips tricks or any type of recommendations.</p>
</div>

<!-- End of jumbotron -->

  </body>

    <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
    <!-- Include all compiled plugins (below), or include individual files as needed -->
    <script src="bootstrap.min.js"></script>
</html>

您的Bootstrap樣式表托管在http://codehighway.org/bootstrap.min.css 然而,這個樣式表正在尋找在glyphicon字體文件../fonts/ 此路徑不存在,這會使您的字體文件變為404,從而使圖標損壞。

您應該將bootstrap.min.css移至/css的新目錄,並將字體移至/fonts的新目錄。 這樣可以解決您的相對路徑問題,並使圖標正常工作。

另一個解決方案是使用CDN(如Bootstrap CDN)為您托管這些文件(其bootstrap.min.css版本包括指向其托管glyphicon字體文件的鏈接)。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM