2017-09-26 56 views
0

我從getbootstrap.com下載了bootstrap 4.0 beta,我包含了dist文件夾中的CSS & js,但是我的樣式不完整(導航欄,隱藏,可見不工作)是否需要任何額外的東西來包含我的引導文件夾,(我需要sass文件夾)。 我包括我的CSS,js & jquery具有正確的路徑。 任何人都可以幫我解答。爲什麼我的助推器4.0 beta工作不正常?

<!DOCTYPE html> 
<html lang="en"> 
<head> 
    <title>Bootstrap Example</title> 
    <meta charset="utf-8"> 
    <meta name="viewport" content="width=device-width, initial-scale=1"> 
    <link href="css/bootstrap.min.css" rel="stylesheet" type="text/css"> 
</head> 
<body> 

<nav class="navbar navbar-inverse"> 
    <div class="container-fluid"> 
    <div class="navbar-header"> 
     <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar"> 
     <span class="icon-bar"></span> 
     <span class="icon-bar"></span> 
     <span class="icon-bar"></span>       
     </button> 
     <a class="navbar-brand" href="#">WebSiteName</a> 
    </div> 
    <div class="collapse navbar-collapse" id="myNavbar"> 
     <ul class="nav navbar-nav"> 
     <li class="active"><a href="#">Home</a></li> 
     <li class="dropdown"> 
      <a class="dropdown-toggle" data-toggle="dropdown" href="#">Page 1 <span class="caret"></span></a> 
      <ul class="dropdown-menu"> 
      <li><a href="#">Page 1-1</a></li> 
      <li><a href="#">Page 1-2</a></li> 
      <li><a href="#">Page 1-3</a></li> 
      </ul> 
     </li> 
     <li><a href="#">Page 2</a></li> 
     <li><a href="#">Page 3</a></li> 
     </ul> 
     <ul class="nav navbar-nav navbar-right"> 
     <li><a href="#"><span class="glyphicon glyphicon-user"></span> Sign Up</a></li> 
     <li><a href="#"><span class="glyphicon glyphicon-log-in"></span> Login</a></li> 
     </ul> 
    </div> 
    </div> 
</nav> 

<div class="container"> 
    <h3>Collapsible Navbar</h3> 
    <p>In this example, the navigation bar is hidden on small screens and replaced by a button in the top right corner (try to re-size this window). 
    <p>Only when the button is clicked, the navigation bar will be displayed.</p> 
</div> 
</body> 
</html> 
+1

你能提供一個最小的,可重複的例子嗎? –

+0

只要你不需要BS的js部分,這應該工作得很好。控制檯中是否有錯誤? – Aslam

+0

網格系統工作正常,但navgation和其他一些類不支持 – Lohith

回答

0

你提到你下載了Bootstrap 4.0 beta,所以我假設你正在嘗試使用文件路徑來使用它。你不需要下載SASS。如果你真的不需要它的所有功能,那麼你可以按照Bootstraps的快速入門指南,https://getbootstrap.com/docs/4.0/getting-started/introduction/

<!DOCTYPE html> 
    <html lang="en"> 
     <head> 
     <!-- Required meta tags --> 
     <meta charset="utf-8"> 
     <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> 

     <!-- Bootstrap CSS --> 
     <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M" crossorigin="anonymous"> 
     </head> 
     <body> 
     <h1>Hello, world!</h1> 

     <!-- Optional JavaScript --> 
     <!-- jQuery first, then Popper.js, then Bootstrap JS --> 
     <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script> 
     <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js" integrity="sha384-b/U6ypiBEHpOf/4+1nzFpr53nxSS+GLCkfwBdFNTxtclqqenISfwAzpKaMNFNmj4" crossorigin="anonymous"></script> 
     <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/js/bootstrap.min.js" integrity="sha384-h0AbiXch4ZDo7tp9hKZ4TsHbi047NrKGLO3SEJAg45jXxnGIfYzk4Si90RDIqNm1" crossorigin="anonymous"></script> 
     </body> 
    </html> 

爲了讓你開始,試試看。然後,也許以後你可以選擇特定的組件。

+0

使用CDN它工作正常,但我不想在服務器存儲引導,我想本地下載和IAM通過鏈接和腳本標記與確切的路徑導入CSS,JS和jQuery文件。是否使用文件路徑 – Lohith

+0

錯誤問題是您正在使用Bootstrap 3.x.x版本。 Bootstrap用4.0 beta對他們的框架進行了徹底的改革;例如,你仍在使用圖形,但他們已經刪除了這個組件。使用您的導航欄的當前文檔。以下是有關更改的更多信息