這篇文章主要介紹了React BootStrap用戶體驗框架快速上手的相關知識,非常不錯,具有參考借鑒價值,需要的朋友可以參考下
官方文檔http://react-bootstrap. github.io/getting-started.html
安裝
#在終端機cd到你的專案目錄下執行:$ npm install react-bootstrap
然後需要我們手動引用css
<!-- Latest compiled and minified CSS --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/latest/css/bootstrap.min.css"> <!-- Optional theme --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/latest/css/bootstrap-theme.min.css">
但是我們在學習的時候使用外部的URL,太慢了。因此我們索引把bootstrap安裝到本地。
$ npm install bootstrap
然後你會發現在你的node_modules目錄下多了bootstrap。
這樣頁面上就可以引用本地的css了
<link rel="stylesheet" type="text/css" href="node_modules/bootstrap/dist/css/bootstrap.min.css" rel="external nofollow" rel="external nofollow" >
好,我們動手來使用React-BootStrap框架吧
http://react-bootstrap.github.io/components.html
我們這裡示範使用它的導航條元件
在index.js裡:
#
const React = require("react"); const ReactDOM = require("react-dom"); import {Navbar} from "react-bootstrap"; const navbarInstance = ( <Navbar> <Navbar.Header> <Navbar.Brand> <a href="#" rel="external nofollow" >react-bootstrap</a> </Navbar.Brand> </Navbar.Header> </Navbar> ); // 然后我们渲染到body里 ReactDOM.render(navbarInstance,document.body);
html頁面上:
es2105的写法 <link rel="stylesheet" type="text/css" href="node_modules/bootstrap/dist/css/bootstrap.min.css" rel="external nofollow" rel="external nofollow" >
效果如下:
主要看瀏覽器位址,這是我們前面設定的」熱啟動」。
執行指令 $ npm start
就開啟了服務
上面是我整理給大家的,希望今後會對大家有幫助。
相關文章:
JavaScript中使用import 和require打包後實作原理分析
##
以上是React中使用BootStrap使用者體驗框架(詳細教學)的詳細內容。更多資訊請關注PHP中文網其他相關文章!