bootstrap 3 - sleek, intuitive, and powerful mobile first front-end framework for faster and easier...

40
Bootstrap 3 Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development.

Upload: cedric-spillebeen

Post on 27-Jan-2015

106 views

Category:

Technology


0 download

DESCRIPTION

Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development. Bootstrap.

TRANSCRIPT

Page 1: Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development. Bootstrap 3

Bootstrap 3Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development.

Page 3: Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development. Bootstrap 3

BootstrapWhat is Bootstrap?

Page 4: Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development. Bootstrap 3

Bootstrap 3Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development.

Page 5: Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development. Bootstrap 3

What is Bootstrap?

● Bootstrap is an open source product from Mark Otto and Jacob Thornton who, when it was initially released, were both employees at Twitter.

● There was a need to standardize the frontend toolsets of engineers across the company.

Page 6: Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development. Bootstrap 3

What is Bootstrap?

● Since Bootstrap launched in August 2011, it has taken off in popularity.

● It has evolved from being an entirely CSS-driven project to include a host of JavaScript plugins and icons.

Page 7: Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development. Bootstrap 3

BootstrapGetting started

Page 8: Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development. Bootstrap 3

Getting started

● Getting started with Bootstrap is as simple as dropping some CSS and JavaScript into the root of your site:http://getbootstrap.com/getting-started/

● Customize variables, components, JavaScript plugins, and more: http://getbootstrap.com/customize/

Page 9: Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development. Bootstrap 3

Getting started

● The fastest way to get Bootstrap is to download the compiled and minified versions of our CSS and JavaScript, along with the included fonts. No documentation or original source files are included:http://getbootstrap.com/getting-started/

Page 10: Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development. Bootstrap 3

BootstrapContent Delivery Network

CDN

Page 11: Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development. Bootstrap 3

Content Delivery Network

● The folks over at NetDNA have graciously provided CDN support for Bootstrap's CSS and JavaScript:

Read more: http://www.bootstrapcdn.com/

<!-- Latest compiled and minified CSS --><link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css">

Page 12: Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development. Bootstrap 3

BootstrapLESS compilation

Page 13: Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development. Bootstrap 3

LESS compilation

● If you download the original files, you need to compile Bootstrap's LESS files into usable CSS. To do that, Bootstrap only officially supports Recess, Twitter's CSS hinter built on top of less.js.

Page 14: Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development. Bootstrap 3

BootstrapWhat’s included

Page 15: Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development. Bootstrap 3

What’s includedBootstrap/├── 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

● This is the most basic form of Bootstrap: compiled files for quick drop-in usage in nearly any web project.

● Please note that all JavaScript plugins require jQuery to be included.

Page 16: Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development. Bootstrap 3

BootstrapCSS

Page 17: Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development. Bootstrap 3

CSS

● Global CSS settings, fundamental HTML elements styled and enhanced with extensible classes, and an advanced grid system.

Page 18: Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development. Bootstrap 3

HTML5 doctype

● Bootstrap makes use of certain HTML elements and CSS properties that require the use of the HTML5 doctype.

<!DOCTYPE html>

<html lang="en">

...

</html>

Page 19: Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development. Bootstrap 3

Mobile first

● Bootstrap 3 is mobile first.● To ensure proper rendering and touch

zooming, add the viewport meta tag:

<meta name="viewport" content="width=device-width, initial-scale=1.0" >

<meta name="viewport" content="width=device-width, initial-scale=1.0,

maximum-scale=1.0, user-scalable=no" >

● Disable zooming capabilities on mobile devices by adding user-scalable=no:

Page 20: Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development. Bootstrap 3

Responsive images

● Images in Bootstrap 3 can be made responsive-friendly via the addition of the .img-responsive class. This applies max-width: 100%; and height: auto; to the image so that it scales nicely to the parent element.

<img src="..." class="img-responsive" alt="Responsive image" >

Page 21: Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development. Bootstrap 3

Typography and links

● Bootstrap sets basic global display, typography, and link styles. These styles can be found within scaffolding.less.

Page 22: Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development. Bootstrap 3

Normalize

● Normalize.css is a modern, HTML5-ready alternative to CSS resets.

● Normalize.css is a small CSS file that provides better cross-browser consistency in the default styling of HTML elements.

Read more: http://necolas.github.io/normalize.css/

Page 23: Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development. Bootstrap 3

Grid system

● Bootstrap includes a responsive, mobile first fluid grid system that appropriately scales up to 12 columns as the device or viewport size increases.

Read more:http://getbootstrap.com/css/#grid

Page 24: Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development. Bootstrap 3

Typography

● Headings● Body copy● Emphasis ( Small, strong, em )● Abbreviations● Addresses● Blockquotes● ListsRead more:http://getbootstrap.com/css/#type

Page 25: Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development. Bootstrap 3

Code

● Inline ( <code> )● Basic block ( <pre> )

Read more:http://getbootstrap.com/css/#code

Page 26: Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development. Bootstrap 3

Tables

● Basic tables● Striped rows● Bordered table● Hover rows● Condensed table● Contextual classes● Responsive tablesRead more:http://getbootstrap.com/css/#tables

Page 27: Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development. Bootstrap 3

Forms

● Basic form● Inline form● Horizontal form● Supported controls● Static control● Control states● Control sizing● Help textRead more: http://getbootstrap.com/css/#forms

Page 28: Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development. Bootstrap 3

Buttons

● Options● Sizes● Disabled state● Button tags

Read more: http://getbootstrap.com/css/#buttons

Page 29: Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development. Bootstrap 3

Images

● Add classes to an <img> element to easily style images in any project:

Read more: http://getbootstrap.com/css/#images

Page 30: Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development. Bootstrap 3

Helper classes

● Close icon ( .close )● Float left ( .pull-left )● Float right ( .pull-right )● Clearfix ( .clearfix )● Screen readers only ( .sr-only )

Read more: http://getbootstrap.com/css/#helper-classes

Page 31: Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development. Bootstrap 3

Responsive utilities

● Responsive classes● Print classes● Test cases

○ Visible on…○ Hidden on…

Read more: http://getbootstrap.com/css/#responsive-utilities

Page 32: Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development. Bootstrap 3

BootstrapComponents

Page 33: Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development. Bootstrap 3

Components

● Over a dozen reusable components built to provide iconography, dropdowns, navigation, alerts, popovers, and much more.

Page 34: Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development. Bootstrap 3

Components

● Glyphicons● Dropdowns● Button groups● Button dropdowns● Input groups● Navs● Navbar● Breadcrumbs● Pagination● Labels

● Badges● Jumbotron● Page header● Thumbnails● Alerts● Progress bars● Media object● List group● Panels● Wells

Page 35: Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development. Bootstrap 3

BootstrapJavaScript

Page 36: Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development. Bootstrap 3

Javascript

● Bring Bootstrap's components to life with over a dozen custom jQuery plugins.

● Easily include them all, or one by one.

Read more:http://getbootstrap.com/javascript/

Page 37: Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development. Bootstrap 3

Javascript

● Transitions● Modal● Dropdown● Srollspy● Tab● Tooltip● Popover● Alert● Button

● Collapse● Carousel● Affix

Page 38: Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development. Bootstrap 3

BootstrapCustomize and download

Page 39: Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development. Bootstrap 3

Customize and download

● Customize Bootstrap's components, LESS variables, and jQuery plugins to get your very own version.

Read more:http://getbootstrap.com/customize/