zoukankan      html  css  js  c++  java
  • 2_bootstrap的环境搭建

    2bootstrap环境搭建

    2.1、下载资源

    2.2、目录结构

    Javaee使用bootStrap开发,主要使用dist发布版目录。
    
    dist目录结构如下:
    bootstrap/ ├── css/ │ ├── bootstrap.css //bootstrap完整版的CSS文件。 │ ├── bootstrap.css.map │ ├── bootstrap.min.css //bootstrap压缩版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完整版的脚本文件。 │ └── bootstrap.min.js// bootstrap压缩版的脚本文件。 └── fonts/ ├── glyphicons-halflings-regular.eot //字体 (字体图标) ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf ├── glyphicons-halflings-regular.woff └── glyphicons-halflings-regular.woff2

    注:完整版用于源码学习,但因为文件大小问题,不适合网络间传递。

        压缩版用于网络发布,压缩版和完整版的唯一区别,仅为压缩版将代码间的大量空格和回车换行删除掉了,节约了大量的空间,功能上完全相同,适用于网络间快速传递。但因为没有了空格和换行,源代码难以阅读。

  • 相关阅读:
    第04组 Beta冲刺(2/4)
    第04组 Beta冲刺(1/4)
    2019 SDN上机第6次作业
    SDN课程阅读作业(2)
    2019 SDN上机第5次作业
    第04组 Alpha事后诸葛亮
    第04组 Alpha冲刺(4/4)
    2019 SDN上机第4次作业
    第04组 Alpha冲刺(3/4)
    第07组 Alpha冲刺(4/6)
  • 原文地址:https://www.cnblogs.com/alexzhang92/p/10078783.html
Copyright © 2011-2022 走看看