前端基础06 Bootstrap框架
发布时间:2020-12-17 20:43:41 所属栏目:安全 来源:网络整理
导读:Bootstrap是Twitter开源的基于HTML、CSS、JavaScript的前端框架。 Bootstrap下载 官方地址:https://getbootstrap.com 中文地址:http://www.bootcss.com/ Bootstrap环境搭建 bootstrap-3.3.7-dist/├── css // CSS文件│ ├── bootstrap-theme.css // B
Bootstrap是Twitter开源的基于HTML、CSS、JavaScript的前端框架。
Bootstrap下载官方地址:https://getbootstrap.com 中文地址:http://www.bootcss.com/ Bootstrap环境搭建 bootstrap-3.3.7-dist/ ├── css // CSS文件 │ ├── bootstrap-theme.css // Bootstrap主题样式文件 │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css // 主题相关样式压缩文件 │ ├── bootstrap-theme.min.css.map │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css // 核心CSS样式压缩文件 │ └── bootstrap.min.css.map ├── fonts // 字体文件 │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 └── js // JS文件 ├── bootstrap.js ├── bootstrap.min.js // 核心JS压缩文件 └── npm.js 由于Bootstrap的某些组件依赖于jQuery,所以请确保下载对应版本的jQuery文件,来保证Bootstrap相关组件运行正常。 (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |