(ws14) emanuel blagonic - html5 u praksi

36
HTML5 u praksi Web::Strategija 14 Emanuel Blagonić

Upload: webstrategija

Post on 02-Jul-2015

342 views

Category:

Education


6 download

TRANSCRIPT

Page 1: (WS14) Emanuel Blagonic - HTML5 u praksi

HTML5 u praksi

Web::Strategija 14 Emanuel Blagonić

Page 2: (WS14) Emanuel Blagonic - HTML5 u praksi

Prije godinu dana...

Page 3: (WS14) Emanuel Blagonic - HTML5 u praksi

Zašto smo se odlučili za HTML5?

Page 4: (WS14) Emanuel Blagonic - HTML5 u praksi

Dobili smo nove tagove...

Page 5: (WS14) Emanuel Blagonic - HTML5 u praksi

section

article

header

footer

nav

aside

hgroup

Page 6: (WS14) Emanuel Blagonic - HTML5 u praksi

Novi tagovi = nova semantička vrijednost

Page 7: (WS14) Emanuel Blagonic - HTML5 u praksi

Kako ih koristiti?

Page 8: (WS14) Emanuel Blagonic - HTML5 u praksi

section

<section id=”content”> ...</section>

Page 9: (WS14) Emanuel Blagonic - HTML5 u praksi

section

<section id=”content”> <section id=”inner-content”>...</section> <section id=”sidebar”>...</section> <section class=”clear”>...</section></section>

Page 10: (WS14) Emanuel Blagonic - HTML5 u praksi

section

<section id=”content”> <section id=”inner-content”>...</section> <section id=”sidebar”>...</section> <section class=”clear”>...</section></section>

Page 11: (WS14) Emanuel Blagonic - HTML5 u praksi

article

<article> <h2>Heading</h2> <p>Short description...</p></article>

Page 12: (WS14) Emanuel Blagonic - HTML5 u praksi

header

<header id=”page-header”> <a href=”/” id=”logo”> <img src=”logo.png” /> </a></header>

Page 13: (WS14) Emanuel Blagonic - HTML5 u praksi

header

<header> <h1><a href=”#”>Heading</a></h1> <p class=”meta author”>Emanuel Blagonić</p></header>

Page 14: (WS14) Emanuel Blagonic - HTML5 u praksi

footer

<footer id=”page-footer”> <nav> <ul> <li><a href=”#”>Navigation item</a></li> </ul> </nav></footer>

Page 15: (WS14) Emanuel Blagonic - HTML5 u praksi

footer

<footer> <p class=”meta tags”><a href=”#”>Tag1</a></p></footer>

Page 16: (WS14) Emanuel Blagonic - HTML5 u praksi

<article>

<header><h1><a href=”#”>Naslov</a></h1><p class=”meta author”>Emanuel Blagonić</p>

</header>

<p>Short description...</p>

<footer><p class=”meta tags”><a href=”#”>Tag1</a></p>

</footer>

</article>

Page 17: (WS14) Emanuel Blagonic - HTML5 u praksi

nav

<nav><a href=”#” class=”button-mobile”>Show navigation</a><ul class=”navigation-primary”>

<li><a href=”#”>Home</a></li><li><a href=”#”>About us</a></li><li><a href=”#”>Contact</a></li><li><a href=”#”>Blog</a></li>

</ul><ul class=”navigation-secondary”>

<li><a href=”#”>Sitemap</a></li><li><a href=”#”>Privacy policy</a></li>

</ul></nav>

Page 18: (WS14) Emanuel Blagonic - HTML5 u praksi

aside

<aside id=”main-sidebar” class=”sidebar”>...

</aside>

Page 19: (WS14) Emanuel Blagonic - HTML5 u praksi

hgroup

<hgroup><h1>Our company</h1><h2>Tagline for our company</h2>

</hgroup>

Page 20: (WS14) Emanuel Blagonic - HTML5 u praksi

hgroup

<article><header>

<hgroup><h1>Article title</h1><h2>Subtitle for the article</h2>

</hgroup><p class=”meta author”>Emanuel Blagonić</p>

</header><p>Short description...</p>

</article>

Page 21: (WS14) Emanuel Blagonic - HTML5 u praksi

Kako ovo koristiti — danas?bez problema

Page 22: (WS14) Emanuel Blagonic - HTML5 u praksi

<!DOCTYPE html><html lang=”en”>

<head>

<meta charset="utf-8" /><script src=”script.js”></script><link rel="stylesheet" href="file.css">

</head>

Page 23: (WS14) Emanuel Blagonic - HTML5 u praksi

<!DOCTYPE html><html lang=”en”>

<head>

<!--[if lt IE 9]><script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->

</head>

Page 24: (WS14) Emanuel Blagonic - HTML5 u praksi

<!DOCTYPE html><html lang=”en”>

<head>

<!--[if lt IE 9]><script>

document.createElement("header" );</script><![endif]-->

</head>

Page 25: (WS14) Emanuel Blagonic - HTML5 u praksi

Kako pišete kod?zadržite stare navike

Page 26: (WS14) Emanuel Blagonic - HTML5 u praksi

<!-- HTML5 <3 --><!-- Odaberite svoj stil pisanja tagova -->

<img src=”logo.png”> <IMG SRC=”logo.png”><img src=”logo.png” />

<br> <!-- je OK --><br /> <!-- je isto OK :) -->

<!-- Odaberite svoj stil pisanja tagova... ali budite konzistentni

-->

Page 27: (WS14) Emanuel Blagonic - HTML5 u praksi

A što s formama?forme na steroidima

Page 28: (WS14) Emanuel Blagonic - HTML5 u praksi

<input type="date"><input type="datetime"><input type="time"><input type="month"><input type="week">

<input type="color"> <input type="range"><datalist>

<input type="email"><input type="tel"><input type="url">

<input type="text" autofocus>

<input type="text" required>

<input type="text" placeholder="Search">

Page 29: (WS14) Emanuel Blagonic - HTML5 u praksi

<input type="url"><input type="tel"> <input type="email">

Page 30: (WS14) Emanuel Blagonic - HTML5 u praksi

Podrška u Internet Exploreru?Nepostojeća, ali postoji rješenje.

http://www.modernizr.com/http://code.google.com/p/webforms2/

Page 31: (WS14) Emanuel Blagonic - HTML5 u praksi

Zaključak?Čekati ili krenuti?

Page 32: (WS14) Emanuel Blagonic - HTML5 u praksi

SVG

Canvas

WebGL

Audio

Video

HTML5 podrška

* Vrijedi za Internet Explorer 9 i novije

Page 33: (WS14) Emanuel Blagonic - HTML5 u praksi

ogg/vorbis

mp3

wav

AAC

ogg/theora

H.264

WebM

Audio i video codeci

* Vrijedi za Internet Explorer 9 i novije

Page 34: (WS14) Emanuel Blagonic - HTML5 u praksi

Search

Phone

URL

Email

Datalist

Podrška za forme

* Biti će podržano od Internet Explorera 10 i novijih