260 likes | 402 Views
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).
E N D
Topics • Grid Systems • Positioning Properties • User Forms • Embedding Media • Image Sprites & Rollovers • Front End Frameworks WEB DEVELOPMENT IMMERSIVE
Popular CSS GRID SYSTEMS • 960 • Blueprint • SenCSS • The Semantic Grid System • Twitter Bootstrap (grid included) WEB DEVELOPMENT IMMERSIVE
CSS GRID SYSTEMS WEB DEVELOPMENT IMMERSIVE
CSS GRID SYSTEMS WEB DEVELOPMENT IMMERSIVE
relative positioning .box { position:relative; top: 25px; left: 200px; } WEB DEVELOPMENT IMMERSIVE
relative positioning WEB DEVELOPMENT IMMERSIVE
Absolute positioning .box { position:absolute; top: 0; right: 0; } WEB DEVELOPMENT IMMERSIVE
Absolute positioning WEB DEVELOPMENT IMMERSIVE
fixed positioning .box { position:fixed; top: 0; right: 150px; } WEB DEVELOPMENT IMMERSIVE
fixed positioning WEB DEVELOPMENT IMMERSIVE
Z-index (layering) .bluebox { position:relative; top: 125px; left: 125px; z-index:3; } WEB DEVELOPMENT IMMERSIVE
Z-index (layering) WEB DEVELOPMENT IMMERSIVE
Embedding VIDEO with a single source <video src=”movie.???”> <!-- Fallback content here to display if the browser does not support the video element. --> </video> WEB DEVELOPMENT IMMERSIVE
Embedding VIDEO using multiple sources <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> WEB DEVELOPMENT IMMERSIVE
Video element support WEB DEVELOPMENT IMMERSIVE
Video codec type support WEB DEVELOPMENT IMMERSIVE
Custom Video player solutions Reviews & Feature Chart: http://praegnanz.de/html5video/ WEB DEVELOPMENT IMMERSIVE
Image Sprites NO YES WEB DEVELOPMENT IMMERSIVE
Image Sprites 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. WEB DEVELOPMENT IMMERSIVE
Single icon, 2 states WEB DEVELOPMENT IMMERSIVE
Multi icon, multi states WEB DEVELOPMENT IMMERSIVE
CSS sprite Rollover WEB DEVELOPMENT IMMERSIVE
front end frameworks html5boilerplate.com html5boilerplate.com/mobile WEB DEVELOPMENT IMMERSIVE
Twitter bootstrap 2 twitter.github.com/bootstrap WEB DEVELOPMENT IMMERSIVE