Bootstrap Components Reusable components built to provide iconography, dropdowns, input groups, navigation, alerts, and much more. http://getbootstrap.com.

Slides:



Advertisements
Similar presentations
Chapter 3 – Web Design Tables & Page Layout
Advertisements

WEB DESIGN TABLES, PAGE LAYOUT AND FORMS. Page Layout Page Layout is an important part of web design Why do you think your page layout is important?
JQuery Mobile. Benefits Required links Remember that we need to add the links to the head, in this order.
Twitter Bootstrap. Agenda What is it? Grids and Fluid layouts Globals and Typography Tables, Forms and Buttons Navigation Media and thumbnails Responsive.
User Interface Design using jQuery Mobile CIS 136 Building Mobile Apps 1.
Web Development & Design Foundations with XHTML Chapter 7 Key Concepts.
Images, Tables, lists, blocks, layout, forms, iframes
Create slices and hotspots Create links in Web pages Create rollovers from slices Create basic animation Add tweening symbol instances to create animation.
Computing Concepts Advanced HTML: Tables and Forms.
User Interface Design using jQuery Mobile CIS 136 Building Mobile Apps 1.
Chapter 9 Collecting Data with Forms. A form on a web page consists of form objects such as text boxes or radio buttons into which users type information.
Chapter 11 Adding Media and Interactivity. Flash is a software program that allows you to create low-bandwidth, high-quality animations and interactive.
JavaScript & jQuery the missing manual Chapter 11
Ruth Betcher Ruth Christie
Yahoo! User Interface (YUI) Library Natly Mekdara.
Overview of Previous Lesson(s) Over View  ASP.NET Pages  Modular in nature and divided into the core sections  Page directives  Code Section  Page.
Session II Outline Typography Session II – Exercise 1 Chapter 8 – Navigation Chapter 4 – Jumbotron Session II – Exercise 2.
Advanced Level Course. Site Extras Site Extras consist of four categories: Stationeries Site Trash Designs Components.
© 2010 Delmar, Cengage Learning Chapter 8 Collecting Data with Forms.
Use CSS to Implement a Reusable Design Selecting a Dreamweaver CSS Starter Layout is the easiest way to create a page with a CSS layout You can access.
AJAX Compiled from “AJAX Programming” [Sang Shin] (Asynchronous JavaScript and XML)
User Interface Components Lecture # 5 From: interface-elements.html.
Creating Google Sites Laura Assem, Director of Technology.
learn. do. dream. Bootstrapping with Twitter Bootstrap Responsive Layouts CSS Components JavaScript Font Awesome Select2 Themes.
Mr. Justin “JET” Turner CSCI 3000 – Fall 2015 CRN Section A – TR 9:30-10:45 CRN – Section B – TR 5:30-6:45.
Positioning Objects with CSS and Tables
Learning Aim C.  In this section we will look at how text, tables, forms and frames can be used in web pages.
XP New Perspectives on Macromedia Dreamweaver MX 2004 Tutorial 5 1 Adding Shared Site Elements.
A gentle introduction to Bootstrap MIS 3502, Spring 2016 Jeremy Shafer Department of MIS Fox School of Business Temple University 2/18/
Fundamentals of Web DevelopmentRandy Connolly and Ricardo Hoar Textbook to be published by Pearson Ed in early Bootstrap.
1/7/2016www.infocampus.co.in1. 1/7/2016www.infocampus.co.in2 Web Development training gives you and all-round training in both the design and the development.
Chapter 4 Bootstrap. Content Bootstrap with CSS Bootstrap Layout Components Bootstrap Plugins.
Ashima Wadhwa Java Script And Forms. Introduction Forms: –One of the most common Web page elements used with JavaScript –Typical forms you may encounter.
CONCEPTS FOR FLUID LAYOUT Web Page Layout. Essential Questions What challenges do mobile devices present to Web designers? What are the basic concepts.
Section 10.1 Define scripting
What’s New in Bootstrap v4
CSCI 1720 W3.CSS – Part 1 East Tennessee State University Department of Computing CSCI 1720 Intermediate Web Design.
PHP MySQL Crash Course with HTML CSS
CSS Bootstrap.
What’s New In Bootstrap v4?
Creating customization with JS framework: Bootstrap
Responsive Design and Twitter Bootstrap
Concepts for fluid layout
User Interface Components
Use Office UI Fabric React to Build Beauty with SharePoint
© 2016, Mike Murach & Associates, Inc.
User Interface Design and Usability jQuery, jQuery UI & jQuery Plugins
Tutorial 6 Topic: jQuery and jQuery Mobile Li Xu
Use Office UI Fabric React to Build Beauty with SharePoint
User Interface Design and Usability Bootstrap
AJAX.
What’s NOT new? Content URLs Site structure CMS
Section 10.1 YOU WILL LEARN TO… Define scripting
CS3220 Web and Internet Programming Introduction to Bootstrap
Responsive Web Applications with Bootstrap & CSS
How to customize your Microsoft SharePoint Online website
How to customize your Microsoft SharePoint Online website
Fixed Positioning.
Session I Chapter 18 - How to Design a Web Site
Forms, cont’d.
Tutorial 6 Creating Dynamic Pages
How to customize your Microsoft SharePoint Online website
Teaching slides Chapter 6.
SEEM4570 Tutorial 5: jQuery + jQuery Mobile
CS3220 Web and Internet Programming Introduction to Bootstrap
HTML and CSS Basics.
HTML5 - 2 Forms, Frames, Graphics.
Concepts for fluid layout
Various mobile devices
ASSETS, SNIPPETS & COMPONENTS
Presentation transcript:

Bootstrap Components Reusable components built to provide iconography, dropdowns, input groups, navigation, alerts, and much more. http://getbootstrap.com

Why? They look good Themeable Replacement for HTML server controls Great for Ajax / SPA AJAX stands for Asynchronous JavaScript And XML. In a nutshell, it is the use of the XMLHttpRequest object to communicate with servers. It can send and receive information in various formats, including JSON, XML, HTML, and text files. Single-Page Applications (SPAs) are Web apps that load a single HTML page and dynamically update that page as the user interacts with the app.

Components The slide shows a grab bag of components from the http://getbootstrap.com website.

Grouping Containers Jumbotron Badge Card Containers Containers are the most basic layout element in Bootstrap and are required when using our default grid system. Choose from a responsive, fixed-width container (meaning its max-width changes at each breakpoint) or fluid-width (meaning it’s 100% wide all the time). While containers can be nested, most layouts do not require a nested container. Jumbotron is a large components that is typically the top section of your site. Badge used to be called label, but changed to badge with bootstrap version 4, can be used for identifying labels or links or to draw your attention to something. A card is a flexible and extensible content container. It includes options for headers and footers, a wide variety of content, contextual background colors, and powerful display options. Card used to be called panel.

Objects Glyphicons Dropdowns Buttons Glyphicons are scalable icons. Find them at glyphicons.com Dropdowns are toggleable, contextual overlays for displaying lists of links and more. They’re made interactive with the included Bootstrap dropdown JavaScript plugin. They’re toggled by clicking, not by hovering. Buttons are typically used to trigger in-page functionality. Typically cause an event to be called that is handled through code.

Glyphicons Glyphicons are scalable icons. Find them at glyphicons.com

Who’s got the button? Use btn to make something look like a button Use btn-modifier to change the look Default Primary Success Info Warning Danger Buttons are typically used to trigger in-page functionality. Typically cause an event to be called that is handled through code.

Enhanced Buttons Group a series of buttons together with btn-group Toggle Buttons Radio button Checkbox Wrap a series of buttons with .btn in .btn-group

Navigation Navs Navbar Breadcrumbs Pagination Navs – Bootstraps included navigation components. Navbar- Bootstrap's powerful, responsive navigation header. Includes support for branding, navigation, and more, Breadcrumbs - Indicate the current page's location within a navigational hierarchy. Pagination – used to indicate a series of related content exists across multiple pages.