PHP前端开发

bootstrap文件怎么引入

百变鹏仔 1个月前 (11-14) #bootstrap
文章标签 文件

bootstrap是一组用于网站和网络应用程序开发的开源前端框架,包括html、css及javascript的框架,提供字体排印、窗体、按钮、导航及其他各种组件及javascript扩展,旨在使动态网页和web应用的开发更加容易。

bootstrap文件怎么引入

Bootstrap的引入一般有两种方法:

引用在线的Bootstrap的样式,

将Bootstrap下载到本地进行引用。

在线引用

基本模板如下:

    <meta>    <title>Bootstrap引入</title>    <!-- 新 Bootstrap 核心 CSS 文件 -->      <link>      <!-- jQuery文件。务必在bootstrap.min.js 之前引入 -->      <script></script>      <!-- 最新的 Bootstrap 核心 JavaScript 文件 -->      <script></script>  

优点:不用本地安装Bootstrap,也不用考虑引用时的路径问题

缺点:一旦在线样式挂了,那么会影响整个页面样式的呈现

本地引用

将Bootstrap下载到本地。

直接访问上述代码中的3个网址来获取代码

去Bootstrap的官网 http://v3.bootcss.com/ 和JQuery

的官网 http://jquery.com/ 下载相应的文件

将需要的文件放在项目下,便于引用

bootstrap的目录结构如下:

bootstrap/├── css/│   ├── bootstrap.css│   ├── bootstrap.css.map│   ├── bootstrap.min.css│   ├── bootstrap.min.css.map│   ├── bootstrap-theme.css│   ├── bootstrap-theme.css.map│   ├── bootstrap-theme.min.css│   └── bootstrap-theme.min.css.map├── js/│   ├── bootstrap.js│   └── bootstrap.min.js└── fonts/    ├── glyphicons-halflings-regular.eot    ├── glyphicons-halflings-regular.svg    ├── glyphicons-halflings-regular.ttf    ├── glyphicons-halflings-regular.woff    └── glyphicons-halflings-regular.woff2

最常用的是css/bootstrap.min.css、js/bootstrap.min.js

jquery.min.js可以在JQuery官网下载

最后,在相应文件中引入即可。

优点:确保网络状况不佳的情况下,页面样式依然可以正常显示

缺点:需要提前安装或下载,引用时要考虑路径问题。