WEB DEVELOpment immersive advanced layout, forms, & media

26
WEB DEVELOpment immersive advanced layout, forms, & media

description

WEB DEVELOpment immersive advanced layout, forms, & media. Topics. Grid Systems Positioning Properties User Forms Embedding Media Image Sprites & Rollovers Front End Frameworks. Popular CSS GRID SYSTEMS. 960 Blueprint SenCSS The Semantic Grid System Twitter Bootstrap (grid included). - PowerPoint PPT Presentation

Transcript of WEB DEVELOpment immersive advanced layout, forms, & media

WEB DEVELOpment immersiveadvanced layout, forms, & media

2

• Grid Systems• Positioning Properties• User Forms• Embedding Media• Image Sprites & Rollovers• Front End Frameworks

Topics

GENERAL ASSEMBLYWEB DEVELOPMENT IMMERSIVE

3

Popular CSS GRID SYSTEMS

GENERAL ASSEMBLYWEB DEVELOPMENT IMMERSIVE

• 960• Blueprint• SenCSS• The Semantic Grid System• Twitter Bootstrap (grid included)

4

CSS GRID SYSTEMS

GENERAL ASSEMBLYWEB DEVELOPMENT IMMERSIVE

5

CSS GRID SYSTEMS

GENERAL ASSEMBLYWEB DEVELOPMENT IMMERSIVE

6

relative positioning

GENERAL ASSEMBLYWEB DEVELOPMENT IMMERSIVE

.box { position:relative; top: 25px; left: 200px;}

7

relative positioning

GENERAL ASSEMBLYWEB DEVELOPMENT IMMERSIVE

8

Absolute positioning

GENERAL ASSEMBLYWEB DEVELOPMENT IMMERSIVE

.box { position:absolute; top: 0; right: 0;}

9

Absolute positioning

GENERAL ASSEMBLYWEB DEVELOPMENT IMMERSIVE

10

fixed positioning

GENERAL ASSEMBLYWEB DEVELOPMENT IMMERSIVE

.box { position:fixed; top: 0; right: 150px;}

11

fixed positioning

GENERAL ASSEMBLYWEB DEVELOPMENT IMMERSIVE

12

Z-index (layering)

GENERAL ASSEMBLYWEB DEVELOPMENT IMMERSIVE

.bluebox { position:relative; top: 125px; left: 125px; z-index:3;}

13

Z-index (layering)

GENERAL ASSEMBLYWEB DEVELOPMENT IMMERSIVE

14

<video src=”movie.???”> <!-- Fallback content here to display if the browser does not support the video element. -->

</video>

Embedding VIDEO with a single source

GENERAL ASSEMBLYWEB DEVELOPMENT IMMERSIVE

15

<video> <source src="movie.mp4" type="video/mp4"/> <source src="movie.ogv" type="video/ogg"/> <source src="movie.webm" type="video/webm"/>

<!-– fall back content here -->

</video>

Embedding VIDEO using multiple sources

GENERAL ASSEMBLYWEB DEVELOPMENT IMMERSIVE

16

Video element support

GENERAL ASSEMBLYWEB DEVELOPMENT IMMERSIVE

17

Video codec type support

GENERAL ASSEMBLYWEB DEVELOPMENT IMMERSIVE

18

Custom Video player solutions

GENERAL ASSEMBLYWEB DEVELOPMENT IMMERSIVE

Reviews & Feature Chart: http://praegnanz.de/html5video/

19

Image Sprites

GENERAL ASSEMBLYWEB DEVELOPMENT IMMERSIVE

YESNO

20

Image Sprites

GENERAL ASSEMBLYWEB DEVELOPMENT IMMERSIVE

Sprites can include 2 states for a single icon or they can contain multiple states for many different menu items.

One advantage is quicker loading time. Load navigation images all at once. No waiting during the mouseover event.

21

Single icon, 2 states

GENERAL ASSEMBLYWEB DEVELOPMENT IMMERSIVE

22

Multi icon, multi states

GENERAL ASSEMBLYWEB DEVELOPMENT IMMERSIVE

23

CSS sprite Rollover

GENERAL ASSEMBLYWEB DEVELOPMENT IMMERSIVE

24

front end frameworks

GENERAL ASSEMBLYWEB DEVELOPMENT IMMERSIVE

html5boilerplate.comhtml5boilerplate.com/mobile

25

Twitter bootstrap 2

GENERAL ASSEMBLYWEB DEVELOPMENT IMMERSIVE

twitter.github.com/bootstrap

26 GENERAL ASSEMBLYWEB DEVELOPMENT IMMERSIVE