Cuprins
Descoperiți ce este inclus în Bootstrap, inclusiv aromele noastre compilate și cod sursă.
Bootstrap compilat
Odată descărcat, dezarhivați folderul comprimat și veți vedea ceva de genul acesta:
bootstrap/
├── css/
│ ├── bootstrap-grid.css
│ ├── bootstrap-grid.css.map
│ ├── bootstrap-grid.min.css
│ ├── bootstrap-grid.min.css.map
│ ├── bootstrap-grid.rtl.css
│ ├── bootstrap-grid.rtl.css.map
│ ├── bootstrap-grid.rtl.min.css
│ ├── bootstrap-grid.rtl.min.css.map
│ ├── bootstrap-reboot.css
│ ├── bootstrap-reboot.css.map
│ ├── bootstrap-reboot.min.css
│ ├── bootstrap-reboot.min.css.map
│ ├── bootstrap-reboot.rtl.css
│ ├── bootstrap-reboot.rtl.css.map
│ ├── bootstrap-reboot.rtl.min.css
│ ├── bootstrap-reboot.rtl.min.css.map
│ ├── bootstrap-utilities.css
│ ├── bootstrap-utilities.css.map
│ ├── bootstrap-utilities.min.css
│ ├── bootstrap-utilities.min.css.map
│ ├── bootstrap-utilities.rtl.css
│ ├── bootstrap-utilities.rtl.css.map
│ ├── bootstrap-utilities.rtl.min.css
│ ├── bootstrap-utilities.rtl.min.css.map
│ ├── bootstrap.css
│ ├── bootstrap.css.map
│ ├── bootstrap.min.css
│ ├── bootstrap.min.css.map
│ ├── bootstrap.rtl.css
│ ├── bootstrap.rtl.css.map
│ ├── bootstrap.rtl.min.css
│ └── bootstrap.rtl.min.css.map
└── js/
├── bootstrap.bundle.js
├── bootstrap.bundle.js.map
├── bootstrap.bundle.min.js
├── bootstrap.bundle.min.js.map
├── bootstrap.esm.js
├── bootstrap.esm.js.map
├── bootstrap.esm.min.js
├── bootstrap.esm.min.js.map
├── bootstrap.js
├── bootstrap.js.map
├── bootstrap.min.js
└── bootstrap.min.js.map
Aceasta este cea mai de bază formă de Bootstrap: fișiere compilate pentru utilizare rapidă în aproape orice proiect web. Oferim CSS și JS compilate ( bootstrap.*), precum și CSS și JS ( bootstrap.min.*) compilate și minimizate. Hărțile sursă ( bootstrap.*.map) sunt disponibile pentru utilizare cu instrumentele de dezvoltare ale anumitor browsere. Fișierele JS incluse ( bootstrap.bundle.jsși minimizate bootstrap.bundle.min.js) includ Popper .
fișiere CSS
Bootstrap include o mână de opțiuni pentru a include unele sau toate CSS-urile noastre compilate.
| fișiere CSS | Aspect | Conţinut | Componente | Utilități |
|---|---|---|---|---|
bootstrap.cssbootstrap.min.cssbootstrap.rtl.cssbootstrap.rtl.min.css |
Inclus | Inclus | Inclus | Inclus |
bootstrap-grid.cssbootstrap-grid.rtl.cssbootstrap-grid.min.cssbootstrap-grid.rtl.min.css |
Doar sistem grilă | — | — | Doar utilități flexibile |
bootstrap-utilities.cssbootstrap-utilities.rtl.cssbootstrap-utilities.min.cssbootstrap-utilities.rtl.min.css |
— | — | — | Inclus |
bootstrap-reboot.cssbootstrap-reboot.rtl.cssbootstrap-reboot.min.cssbootstrap-reboot.rtl.min.css |
— | Doar reporniți | — | — |
fișiere JS
În mod similar, avem opțiuni pentru includerea unei părți sau a întregului JavaScript compilat.
| Fișiere JS | Popper |
|---|---|
bootstrap.bundle.jsbootstrap.bundle.min.js |
Inclus |
bootstrap.jsbootstrap.min.js |
– |
Cod sursă bootstrap
Descărcarea codului sursă Bootstrap include elementele CSS și JavaScript compilate, împreună cu sursa Sass, JavaScript și documentația. Mai precis, include următoarele și multe altele:
bootstrap/
├── dist/
│ ├── css/
│ └── js/
├── site/
│ └──content/
│ └── docs/
│ └── 5.2/
│ └── examples/
├── js/
└── scss/
Și sunt codul sursă pentru CSS și JavaScript scss/. js/Dosarul dist/include tot ce este enumerat în secțiunea de descărcare compilată de mai sus. Dosarul site/content/docs/include codul sursă pentru documentația noastră găzduită, inclusiv exemplele noastre live de utilizare Bootstrap.
În plus, orice alt fișier inclus oferă suport pentru pachete, informații despre licență și dezvoltare.