it is not html5. but ... / html5ではないサイトからhtml5を考える

62
It is not HTML5. but ... It is not HTML5. but ... HTML5 HTML5 HTML5 HTML5 36 36 HTML5 HTML5 - 2013/02/18 - 2013/02/18 @sada_h

Upload: sadaaki-hirai

Post on 15-May-2015

1.577 views

Category:

Documents


0 download

DESCRIPTION

It is not HTML5. but ...HTML5ではないサイトからHTML5を考える 第36回 HTML5とか勉強会 - 2013/02/18 ひらい さだあき @sada_h

TRANSCRIPT

Page 1: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える

It is not HTML5. but ...It is not HTML5. but ...

HTML5HTML5

HTML5HTML5

3636 HTML5 HTML5 - 2013/02/18 - 2013/02/18

@sada_h

Page 2: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える

/ /

/ HTML5

, Born in 1981.

Ruby / Rails / HTML5 / JavaScript / Java

Kakaku.com, Inc. Engineer 2012/08

sadah.github.com @sada_h techlog

html5j

[ ]

[cena( )]

Page 3: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える
Page 4: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える
Page 5: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える

are not HTML5.are not HTML5.

Page 6: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える

HTML5HTML5

Page 8: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える
Page 9: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える

HTML5HTML5

Page 10: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える

HTML5HTML5

2012/12/17 2012/12/17

W3CW3C

Page 11: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える
Page 12: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える

HTML5HTML5

Page 13: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える
Page 15: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える

HTML5 MarkupHTML5 Markup

html5shiv createElement

<!--[if lt IE 9]> <script src="dist/html5shiv.js"></script><![endif]-->

elements = "abbr article aside audio bdi canvas data datalist details figcaption figure footer header hgroup mark meter nav output progress section summary time video".split(" ");for(var i=0; i<elements.length; i++){ document.createElement(elements[i]);}

Sample: HTML5 fall back Sample

Page 16: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える

microdata / RDFamicrodata / RDFa

microdata RDFa

Barack Obama

Home - schema.org

- Google

Google Structured Data Testing Tool

Page 17: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える

microdata / RDFamicrodata / RDFa

Specs

HTML+RDFa 1.1

Last Call: HTML+RDFa 1.1 - W3C News - 07February 2013

HTML Microdata

HTML Microdata Nightly

Page 18: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える

microdatamicrodata

<div itemscope itemtype="http://data-vocabulary.org/Person"> 私の名前は<span itemprop="name">ひらい さだあき</span>ですが、 みんなから「<span itemprop="nickname">さだ</span>」と呼ばれています。 私のホームページは、 <a href="http://sadah.github.com" itemprop="url">sadah.github.com</a> です。 鎌倉に住んでおり、<span itemprop="title">エンジニア</span>として <span itemprop="affiliation">カカクコム</span>に勤めています。</div>

Sample: microdata

Page 20: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える

MediaQueriesMediaQueries

World Wide Web Consortium (W3C)

Microsoft Japan

NTT

Page 21: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える

MediaQueriesMediaQueries

@media screen and (max-width: 479px) { .media-test { color: red; }}@media screen and (min-width: 480px) and (max-width: 1023px) { .media-test { color: blue; }}@media screen and (min-width: 1024px) { .media-test { color: green;}}

Sample: MediaQueries

sadah.github.com

Page 22: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える

MediaQueriesMediaQueries

CSS

Page 23: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える

MediaQueriesMediaQueries

Web

PC

Page 24: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える

MediaQueriesMediaQueries

MediaQueries

Page 25: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える

MediaQueriesMediaQueries

bookmarklet

Spec :

Media Queries

Viewport Resizer

Responsive Design Testing

Media Queries W3C REC

Page 26: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える

CheckCheck

BrowserStack

modern.IE

Adobe® BrowserLab

Page 28: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える

WebFontsWebFonts

sadah.github.com

Google Web Fonts Compare

Page 29: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える

WebFontsWebFonts

/* using Google Web Fonts */@font-face { font-family: 'Allerta Stencil'; src: url(http://themes.googleusercontent.com/static/fonts/allertastencil/v4/CdSZfRtHbQrBohqmzSdDYKqcRvMv63bhrwdN_8Hu8N8.woff) format('woff');}

.webfonts{ font-family: 'Allerta Stencil', sans-serif;}

Sample: WebFontsWeb Fonts IT

Page 32: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える

CanvasCanvas

var ctx = $("#canvas-area")[0].getContext("2d");// x, y, radius, startAngle, endAngle [, anticlockwise ] )ctx.arc(200, 100, 50, 0, Math.PI*2, false);ctx.stroke();

Sample: Canvas

Sample: getUserMedia + Canvas + Video + data URLScheme + FullScreen API

Page 33: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える

Canvas + WebFontsCanvas + WebFonts

Canvas WebFonts WebFonts

1

ctx.fillStyle = "navy";ctx.font = "72px 'Cabin Sketch', cursive";ctx.fillText("WebFonts", 200 , 50);

Sample: Canvas + WebFonts

Page 34: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える

WebFontsWebFonts

WebFont Loader

WebFontConfig = { google: { families: [ 'Tangerine', 'Cantarell' ] } };(function() { var wf = document.createElement('script'); wf.src = ('https:' == document.location.protocol ? 'https' : 'http') + '://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js'; wf.type = 'text/javascript'; wf.async = 'true'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(wf, s);})();

WebFont Loader - Google Web Fonts

Page 35: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える

CSS Fonts Module Level 3CSS Fonts Module Level 3

W3C Working Draft 12 February 2013

9.2 The FontLoader Interface

W3C Working Draft 11 December 2012

9.2 The FontLoader InterfaceCSS Fonts Module Level 3, CSS Transitions Drafts Published - W3C News

Page 36: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える

9.2 The FontLoader Interface9.2 The FontLoader Interface

dictionary LoadFontParameters { DOMString font; DOMString text = " "; FontsReadyCallback onsuccess; FontsReadyCallback onerror; };

// check and start load if appropriate // and fire callback when all loads complete void loadFont(LoadFontParameters params);

Page 37: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える

PerformancePerformance

Navigation Timing

link prefetch script defer async

data URL Scheme

Navigation Timing (W3c REC)

Navigation Timing 2

4.12 Links — HTML5

4.3 Scripting — HTML5

RFC 2397 - The "data" URL scheme

Page 38: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える

PerformancePerformance

HTTP1.1 …

minify / gzip

CDN

Request

IT

Page 39: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える

PerformancePerformance

Pingdom Tools : tabelog.com

WebPagetest Test Result - Tokyo : tabelog.com

Page 40: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える

RequestRequest ……

Page 41: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える

PerformancePerformance

HTML5 HTTP 2.0 SPDY

Hypertext Transfer Protocol version 2.0 / IETF

SPDY - The Chromium Projects

SPDY Protocol / IETF

Page 42: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える

HTTP

TLS

SPDY

SPDY - Wikipedia

Page 43: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える

Multiplexed streamsMultiplexed streams

Request prioritizationRequest prioritization

HTTP header compressionHTTP header compressionSPDY: An experimental protocol for a faster web - The Chromium Projects

Page 44: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える

html5 - Google html5 - Google

Page 45: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える

SSL

SPDY Performance on Mobile Networks

Page 46: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える
Page 47: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える

CDN SPDYSPDY HTTP 2.0HTTP 2.0

Page 48: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える
Page 49: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える

HTML5( )

Page 50: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える

20132013

WebWeb

Page 51: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える

HTML5.1HTML5.1

navigationControllernavigationController

templatetemplate

OfflineOffline

Page 52: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える

HTML5 MarkupHTML5 Markup

microdata / RDFamicrodata / RDFa

WebFonts, CanvasWebFonts, Canvas

SPDY / HTTP 2.0SPDY / HTTP 2.0

Page 53: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える
Page 54: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える
Page 55: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える
Page 56: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える

HTML5 MediaQueries

cena

Page 57: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える
Page 58: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える

:

Page 59: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える

HTML5HTML5

Page 60: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える

HappyHappy

Page 61: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える

HappyHappy

HTML5HTML5

HTML5HTML5

Page 62: It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える

The EndThe End

It is not HTML5. but ...It is not HTML5. but ...

Thank you so mach.Thank you so mach.http://bit.ly/h5study36sadahhttp://bit.ly/h5study36sadah

@sada_h@sada_h