# [Bootstrap](http://getbootstrap.com) [![Bower version](https://badge.fury.io/bo/bootstrap.png)](http://badge.fury.io/bo/bootstrap) [![Build Status](https://secure.travis-ci.org/twbs/bootstrap.png)](http://travis-ci.org/twbs/bootstrap) [![devDependency Status](https://david-dm.org/twbs/bootstrap/dev-status.png?theme=shields.io)](https://david-dm.org/twbs/bootstrap#info=devDependencies)
[![Selenium Test Status](https://saucelabs.com/browser-matrix/bootstrap.svg)](https://saucelabs.com/u/bootstrap)
Bootstrap is a sleek, intuitive, and powerful front-end framework for faster and easier web development, created by [Mark Otto](http://twitter.com/mdo) and [Jacob Thornton](http://twitter.com/fat), and maintained by the [core team](https://github.com/twbs?tab=members) with the massive support and involvement of the community.
To get started, check out <http://getbootstrap.com>!
## Table of contents
- [Quick start](#quick-start)
- [Bugs and feature requests](#bugs-and-feature-requests)
- [Documentation](#documentation)
- [Compiling CSS and JavaScript](#compiling-css-and-javascript)
- [Contributing](#contributing)
- [Community](#community)
- [Versioning](#versioning)
- [Authors](#authors)
- [Copyright and license](#copyright-and-license)
## Quick start
Three quick start options are available:
- [Download the latest release](https://github.com/twbs/bootstrap/archive/v3.1.1.zip).
- Clone the repo: `git clone https://github.com/twbs/bootstrap.git`.
- Install with [Bower](http://bower.io): `bower install bootstrap`.
Read the [Getting Started page](http://getbootstrap.com/getting-started/) for information on the framework contents, templates and examples, and more.
### What's included
Within the download you'll find the following directories and files, logically grouping common assets and providing both compiled and minified variations. You'll see something like this:
```
bootstrap/
├── css/
│ ├── bootstrap.css
│ ├── bootstrap.min.css
│ ├── bootstrap-theme.css
│ └── bootstrap-theme.min.css
├── js/
│ ├── bootstrap.js
│ └── bootstrap.min.js
└── fonts/
├── glyphicons-halflings-regular.eot
├── glyphicons-halflings-regular.svg
├── glyphicons-halflings-regular.ttf
└── glyphicons-halflings-regular.woff
```
We provide compiled CSS and JS (`bootstrap.*`), as well as compiled and minified CSS and JS (`bootstrap.min.*`). Fonts from Glyphicons are included, as is the optional Bootstrap theme.
## Bugs and feature requests
Have a bug or a feature request? Please first read the [issue guidelines](https://github.com/twbs/bootstrap/blob/master/CONTRIBUTING.md#using-the-issue-tracker) and search for existing and closed issues. If your problem or idea is not addressed yet, [please open a new issue](https://github.com/twbs/bootstrap/issues/new).
## Documentation
Bootstrap's documentation, included in this repo in the root directory, is built with [Jekyll](http://jekyllrb.com) and publicly hosted on GitHub Pages at <http://getbootstrap.com>. The docs may also be run locally.
### Running documentation locally
1. If necessary, [install Jekyll](http://jekyllrb.com/docs/installation) (requires v1.x).
- **Windows users:** Read [this unofficial guide](https://github.com/juthilo/run-jekyll-on-windows/) to get Jekyll up and running without problems. We use Pygments for syntax highlighting, so make sure to read the sections on installing Python and Pygments.
2. From the root `/bootstrap` directory, run `jekyll serve` in the command line.
- **Windows users:** While we use Jekyll's `encoding` setting, you might still need to change the command prompt's character encoding ([code page](http://en.wikipedia.org/wiki/Windows_code_page)) to UTF-8 so Jekyll runs without errors. For Ruby 2.0.0, run `chcp 65001` first. For Ruby 1.9.3, you can alternatively do `SET LANG=en_EN.UTF-8`.
3. Open <http://localhost:9001> in your browser, and voilà.
Learn more about using Jekyll by reading its [documentation](http://jekyllrb.com/docs/home/).
### Documentation for previous releases
Documentation for v2.3.2 has been made available for the time being at <http://getbootstrap.com/2.3.2/> while folks transition to Bootstrap 3.
[Previous releases](https://github.com/twbs/bootstrap/releases) and their documentation are also available for download.
## Compiling CSS and JavaScript
Bootstrap uses [Grunt](http://gruntjs.com/) with convenient methods for working with the framework. It's how we compile our code, run tests, and more. To use it, install the required dependencies as directed and then run some Grunt commands.
### Install Grunt
From the command line:
1. Install `grunt-cli` globally with `npm install -g grunt-cli`.
2. Navigate to the root `/bootstrap` directory, then run `npm install`. npm will look at [package.json](https://github.com/twbs/bootstrap/blob/master/package.json) and automatically install the necessary local dependencies listed there.
When completed, you'll be able to run the various Grunt commands provided from the command line.
**Unfamiliar with `npm`? Don't have node installed?** That's a-okay. npm stands for [node packaged modules](http://npmjs.org/) and is a way to manage development dependencies through node.js. [Download and install node.js](http://nodejs.org/download/) before proceeding.
### Available Grunt commands
#### Build - `grunt`
Run `grunt` to run tests locally and compile the CSS and JavaScript into `/dist`. **Uses [Less](http://lesscss.org/) and [UglifyJS](http://lisperator.net/uglifyjs/).**
#### Only compile CSS and JavaScript - `grunt dist`
`grunt dist` creates the `/dist` directory with compiled files. **Uses [Less](http://lesscss.org/) and [UglifyJS](http://lisperator.net/uglifyjs/).**
#### Tests - `grunt test`
Runs [JSHint](http://jshint.com) and [QUnit](http://qunitjs.com/) tests headlessly in [PhantomJS](http://phantomjs.org/) (used for CI).
#### Watch - `grunt watch`
This is a convenience method for watching just Less files and automatically building them whenever you save.
### Troubleshooting dependencies
Should you encounter problems with installing dependencies or running Grunt commands, uninstall all previous dependency versions (global and local). Then, rerun `npm install`.
## Contributing
Please read through our [contributing guidelines](https://github.com/twbs/bootstrap/blob/master/CONTRIBUTING.md). Included are directions for opening issues, coding standards, and notes on development.
Moreover, if your pull request contains JavaScript patches or features, you must include relevant unit tests. All HTML and CSS should conform to the [Code Guide](http://github.com/mdo/code-guide), maintained by [Mark Otto](http://github.com/mdo).
Editor preferences are available in the [editor config](https://github.com/twbs/bootstrap/blob/master/.editorconfig) for easy use in common text editors. Read more and download plugins at <http://editorconfig.org>.
## Community
Keep track of development and community news.
- Follow [@twbootstrap on Twitter](http://twitter.com/twbootstrap).
- Read and subscribe to [The Official Bootstrap Blog](http://blog.getbootstrap.com).
- Chat with fellow Bootstrappers in IRC. On the `irc.freenode.net` server, in the `##twitter-bootstrap` channel.
- Implementation help may be found at Stack Overflow (tagged [`twitter-bootstrap-3`](http://stackoverflow.com/questions/tagged/twitter-bootstrap-3)).
## Versioning
For transparency into our release cycle and in striving to maintain backward compatibility, Bootstrap is maintained under the Semantic Versioning guidelines. Sometimes we screw up, but we'll adhere to these rules whenever possible.
Releases will be numbered with the following format:
`<major>.<minor>.<patch>`
And constructed with the following guidelines:
- Breaking backward compatibility **bumps the major** while resetting minor and patch
- New additions without br
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
软件开发设计:应用软件开发、系统软件开发、移动应用开发、网站开发C++、Java、python、web、C#等语言的项目开发与学习资料 硬件与设备:单片机、EDA、proteus、RTOS、包括计算机硬件、服务器、网络设备、存储设备、移动设备等 操作系统:LInux、树莓派、安卓开发、微机操作系统、网络操作系统、分布式操作系统等。此外,还有嵌入式操作系统、智能操作系统等。 网络与通信:数据传输、信号处理、网络协议、网络与通信硬件、网络安全网络与通信是一个非常广泛的领域,它涉及到计算机科学、电子工程、数学等多个学科的知识。 云计算与大数据:包括云计算平台、大数据分析、人工智能、机器学习等,云计算是一种基于互联网的计算方式,通过这种方式,共享的软硬件资源和信息可以按需提供给计算机和其他设备。
资源推荐
资源详情
资源评论
收起资源包目录
node 项目部署.zip (581个子文件)
.bowerrc 33B
.bowerrc 33B
creations.bson 11.22MB
categories.bson 355KB
comments.bson 4KB
pins.bson 4KB
users.bson 479B
counters.bson 67B
bootstrap.css 118KB
bootstrap.css 118KB
bootstrap.min.css 98KB
bootstrap.min.css 98KB
bootstrap-theme.css 15KB
bootstrap-theme.css 15KB
bootstrap-theme.min.css 13KB
bootstrap-theme.min.css 13KB
index.css 28B
glyphicons-halflings-regular.eot 20KB
glyphicons-halflings-regular.eot 20KB
glyphicons-halflings-regular.eot 20KB
glyphicons-halflings-regular.eot 20KB
.gitignore 588B
.gitignore 588B
.gitignore 418B
.gitignore 418B
.gitignore 161B
.gitignore 133B
.gitignore 95B
movie.jade 5KB
detail.jade 4KB
game.jade 4KB
admin.jade 4KB
detail.jade 3KB
admin.jade 3KB
header.jade 2KB
header.jade 2KB
list.jade 1KB
list.jade 1KB
results.jade 882B
index.jade 871B
results.jade 855B
index.jade 835B
categorylist.jade 730B
userlist.jade 725B
categorylist.jade 716B
userlist.jade 711B
signup.jade 617B
signin.jade 617B
signup.jade 612B
signin.jade 612B
category_admin.jade 459B
category_admin.jade 450B
head.jade 291B
head.jade 282B
wechat_head.jade 279B
layout.jade 177B
layout.jade 177B
wechat.jade 125B
footer.jade 53B
footer.jade 53B
1546482796213.jpeg 30KB
1546487768184.jpeg 25KB
1546487916287.jpeg 24KB
1408255311746.jpeg 8KB
1408255311746.jpeg 8KB
2.jpg 32KB
jquery.js 242KB
jquery.js 242KB
jquery.min.js 82KB
jquery.min.js 82KB
sizzle.js 57KB
sizzle.js 57KB
bootstrap.js 54KB
bootstrap.js 54KB
bootstrap.min.js 28KB
bootstrap.min.js 28KB
wechat.js 25KB
event.js 24KB
event.js 24KB
ajax.js 21KB
ajax.js 21KB
sizzle.min.js 18KB
sizzle.min.js 18KB
effects.js 17KB
effects.js 17KB
manipulation.js 15KB
manipulation.js 15KB
reply.js 14KB
css.js 12KB
css.js 12KB
tooltip.js 12KB
tooltip.js 12KB
core.js 11KB
core.js 11KB
Gruntfile.js 11KB
Gruntfile.js 11KB
creation.js 8KB
index.js 7KB
modal.js 7KB
modal.js 7KB
共 581 条
- 1
- 2
- 3
- 4
- 5
- 6
资源评论
妄北y
- 粉丝: 2w+
- 资源: 1万+
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- vb客户管理系统设计(论文+源代码+开题报告+可行性报告+答辩PPT)(20241k).7z
- vb库存管理系统(论文+开题报告+源代码)(2024zt).7z
- VB库存管理系统(源代码+论文+开题报告+中期报告)(2024jn).7z
- vb课题项目进程管理系统设计(论文+源代码+开题报告+外文翻译+答辩PPT)(2024xx).7z
- VB连锁店信息管理系统设计(源代码+系统)(2024pm).7z
- VB流动资金贷款业务系统(源代码+系统+答辩PPT+开题报告+外文翻译+文献综述)(2024j5).7z
- VB旅游资源及线路管理系统(论文+源代码+开题报告)(2024b4).7z
- VB旅游资源及线路管理系统(源代码+系统)(2024vw).7z
- VB酒店管理信息系统(系统+论文)(2024xw).7z
- VB酒店管理信息系统论文(2024e2).7z
- vb酒店管理信息系统设计(论文+源代码)(2024gq).7z
- vb酒店客房餐饮管理系统(论文+源代码)(2024ks).7z
- VB考试分析评价系统(源代码+系统+开题报告+外文翻译+英文翻译+答辩PPT)(2024gd).7z
- VBIC卡管理系统(源代码+论文+外文翻译+答辩PPT)(202489).7z
- 语音信号的处理与滤波(窗函数法)MATLAB代码
- MATLAB Simulink同步发电机VSG转动惯量和阻尼系数协同自适应控制仿真模型 资料丰富附参考文献 内容包括0转动惯量和阻尼系数固定下的dwdt和deltaw变化轨迹;1不同转动惯量和阻尼系统
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功