SlideShare ist ein Scribd-Unternehmen logo
1 von 50
Downloaden Sie, um offline zu lesen
Familiar	
 HTML5
                                     HTML5
HTML5	
 Conference	
 Miyazaki	
 2013
             	
        	
  @sada_h
               2013/02/10
html5j.org	
 /	
 HTML5                   	
 
sadah.github.com 	
 /	
  @sada_h 	
 /	
  techlog
Ruby	
 /	
 Rails	
 /	
 HTML5	
 /	
 JavaScript	
 /	
 Java
Kakaku.com,	
 Inc.	
 Engineer	
 2012/08
                                             	
 [        ]
                                      	
 [cena(            )]
HTML5
HTML5	
  W3C
Year Spec         Topic
1993 HTML	
 1.0   IEFT
1997 HTML	
 3.2   W3C
                  W3C
1997 HTML	
 4.0   W3C
1999 HTML	
 4.0.1 W3C
2000 XHTML	
 1.0 W3C
                 HTML	
 4.0.1 XML
HTML5	
  W3C
Year Spec        Topic
2001 XHTML	
 1.1 W3C      	
 
2007 HTML5       W3C               (WG        )
2009 XHTML	
 2.0 XHTML2	
 WG	
 
2011 HTML5       W3C	
 
2012 HTML5       W3C	
            	
 (2012/12/17)
HTML5
HTML5


            	
 
HTML5
HTML5
HTML5	
 Markup
HTML5


  Apple
  LAWSON
  UNITED	
 ARROWS	
 LTD.
  BEAMS
spec
  HTML5 	
 /	
  HTML	
 5.1
HTML5	
 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 figu
   re footer header hgroup mark meter nav output progress section summary time vi
   deo".split(" ");
   for(var i=0; i<elements.length; i++){
     document.createElement(elements[i]);
   }

  Sample:	
 HTML5	
 fall	
 back	
 Sample
JavaScript
Window/History/Location	
  HTML5
Thanks	
 myakura!
  5.2	
 The	
 Window	
 object	
 —	
 HTML5
  5.5.2	
 The	
 History	
 interface
  5.5.3	
 The	
 Location	
 interface
Selectors	
 API jQuery
  Selectors	
 API	
 Level	
 1
  jquery-1.8.2.js
WebStorage
WebStorage	
  	
 Google	
  	
 twitter	
 
  Twitter
  Google
  Web	
 Storage




           	
 IndexedDB	
 
           HTML5Rocks                      …
  IndexedDB                   TODO         	
 HTML5	
 Rocks
WebStorage

5MB
         	
 QUOTA_EXCEEDED_ERR	
 


localStorage.setItem("key","text");
text = localStorage.getItem("key");

sessionStorage.setItem("key",text);
text = sessionStorage.getItem("key");

Sample:	
 WebStorage	
 Sample
CSS3	
 Backgrounds,Borders
border-radius	
       	
 text-shadow	
 
             	
  cena                   	
 transform	
 /	
 transition	
 /
animation	
 
   CSS	
 Backgrounds	
 and	
 Borders	
 Module	
 Level	
 3
   CSS	
 Transforms 	
 /	
  CSS	
 Animations


   modern.IE
   BrowserStack
   Adobe®	
 BrowserLab
CSS3	
 Backgrounds,Borders
 border-radius: 10px 10px 10px 10px;
 box-shadow: 10px 10px 10px #aaa;
 text-shadow: 5px 5px 5px #aaa;

Sample:	
 CSS3	
 Backgrounds,	
 Borders
                 	
 CSS	
 Variables	
 


Sample:	
 CSS	
 Variables	
 Module	
 Level	
 1
MediaQueries
  World	
 Wide	
 Web	
 Consortium	
 (W3C)
                           Microsoft	
 Japan
  NTT
bookmarklet	
 
  Media	
 Queries
  Responsive	
 design	
 testing	
 tool	
 –	
 Viewport	
 Resizer	
 –
  Device	
 simulation	
 tool
  Responsive	
 Design	
 Testing
MediaQueries
     @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
                                                                      Web


PC
WebFonts
              DevTools
BEAMS
NTT
FONTPLUS


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

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

Sample:	
 WebFonts
                                                Web	
 Fonts                  	
  IT
          	
 Extension	
 
Chrome	
 -	
 WhatFont
Chrome	
 -	
 Google	
 Font	
 Previewer	
 for	
 Chrome
Video
       …
YouTube	
 -	
 HTML5
              iBooks	
 Author	
 -	
  26 HTML5
-	
 YouTube
Canvas
Canvas	
  GoogleMaps
Thanks	
 komasshu	
 !



                  	
 /	
 Google	
 Maps
                           	
 -	
 WSJ
spec
  HTML	
 Canvas	
 2D	
 Context
Canvas
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
Canvas	
 +	
 WebFonts
   ctx.fillStyle = "navy";
   ctx.font = "72px 'Cabin Sketch', cursive";
   ctx.fillText("WebFonts", 200 , 50);

  Sample:	
 Canvas	
 +	
 WebFonts
Canvas WebFonts                                 	
 WebFonts

  1
WebFont	
 Loader	
 
  WebFont	
 Loader	
 -	
 Google	
 Web	
 Fonts
SVG


Thanks	
 Daniel,	
 wks,	
 myakura.
  Election	
 2010	
 -	
 The	
 Wall	
 Street	
 Journal	
 Online
  Raphaël—JavaScript	
 Library
  The	
 New	
 York	
 Times
SVG
  <svg width="800" height="300">
   <circle cx="150" cy="150" r="100" stroke="blue" fill="white" stroke-width="5"
  />
  </svg>

  <img src="image.svg">

  Sample:	
 SVG
  Sample:	
 SVG	
 +	
 WebFonts
Raphaël             …
  Raphaël	
 ·	
 Australia
  Raphaël	
 ·	
 Text	
 Rotation
FullScreenAPI

Mac         Window
       Flickr	
 -	
 Photo	
 Sharing!
FullScreenAPI
$("h1")[0].webkitRequestFullScreen()
$("h1")[0].mozRequestFullScreen()

                      Sample:	
 FullScreen	
 API
History	
 API
                                           	
 History	
 API(pjax)	
 
github flickr      facebook
  sadah	
 github
  IMG_6077	
 |	
 Flickr	
 -	
 Photo	
 Sharing!
  HTML5	
 Demo:	
 HTML5	
 History	
 API
File	
 API	
 &	
 Drag	
 and	
 Drop
Drag	
 and	
 Drop(&	
 File	
 API)	
 
         	
 -	
 Google+
File	
 API	
 &	
 Drag	
 and	
 Drop
 // jquery
 // var files = e.originalEvent.dataTransfer.files;
 var files = e.dataTransfer.files;
 var fileName = files[0].name;
 var fileSize = files[0].size;

 var reader = new FileReader();
 reader.onload = function() {
   var line = reader.result;
 }
 reader.readAsText(file[0], 'UTF-8');

Sample:	
 Drag	
 and	
 Drop
microdata
       	
 microdata
Barack	
 Obama
Home	
 -	
 schema.org
              	
 -	
 Google	
 
microdata	
                 	
 -	
              	
 
       	
                	
 -	
       	
 -	
          	
 
Google	
 Structured	
 Data	
 Testing	
 Tool
microdata
<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


microdata	
                  	
 -	
                   	
 
      	
                  	
 -	
       	
 -
Custom	
 Data	
 Attributes

Barack	
 Obama
3.2.3.9	
 Embedding	
 custom	
 non-visible	
 data	
 with	
 the
data-*	
 attributes
data	
 URL	
 Scheme


RFC	
 2397	
 -	
 The	
 "data"	
 URL	
 scheme
data	
 URL	
 Scheme
<img src="data:image/jpeg;base64,/9j/4AAQSkZJ ... "

var strDataURI = document.getElementById("canvas-area").toDataURL("image/pn
g");




Sample:	
 data	
 URL	
 Scheme
Sample:	
 data	
 URL	
 Scheme	
 +	
 Canvas


Sample:	
 Video	
 +	
 Canvas	
 +	
 data	
 URL	
 Scheme	
 +
FullScreen
Performance
Navigation	
 Timing
   Navigation	
 Timing
link	
 prefetch	
    	
 script	
 defer	
 async	
 
   4.12	
 Links	
 —	
 HTML5
   4.3	
 Scripting	
 —	
 HTML5
Performance
HTML5                    HTTP	
 2.0	
     	
 SPDY	
 
 draft-ietf-httpbis-http2-01	
 -	
 Hypertext	
 Transfer
 Protocol	
 version	
 2.0
 SPDY	
 -	
 The	
 Chromium	
 Projects
 draft-mbelshe-httpbis-spdy-00	
 -	
 SPDY	
 Protocol
Drag	
 and	
 Drop	
  	
 Canvas
HTML5
HTML5	
 
HTML5
The	
 End
 Thank	
 you	
 so	
 mach.
   Familiar	
 HTML5
        @sada_h
http://bit.ly/h5m2013b2

Weitere ähnliche Inhalte

Was ist angesagt?

Ie9 dev overview (300) beta
Ie9 dev overview (300) betaIe9 dev overview (300) beta
Ie9 dev overview (300) betaKirk Yamamoto
 
Google’s PRPL Web development pattern
Google’s PRPL Web development patternGoogle’s PRPL Web development pattern
Google’s PRPL Web development patternJeongkyu Shin
 
New Elements & Features in HTML5
New Elements & Features in HTML5New Elements & Features in HTML5
New Elements & Features in HTML5Jamshid Hashimi
 
HTML5 and Search Engine Optimization (SEO)
HTML5 and Search Engine Optimization (SEO)HTML5 and Search Engine Optimization (SEO)
HTML5 and Search Engine Optimization (SEO)Performics.Convonix
 
Startup eng-camp 3
Startup eng-camp 3Startup eng-camp 3
Startup eng-camp 3Jollen Chen
 
HTML5 Introduction
HTML5 IntroductionHTML5 Introduction
HTML5 Introductiondynamis
 
Keypoints html5
Keypoints html5Keypoints html5
Keypoints html5dynamis
 
HTML5: An Introduction To Next Generation Web Development
HTML5: An Introduction To Next Generation Web DevelopmentHTML5: An Introduction To Next Generation Web Development
HTML5: An Introduction To Next Generation Web DevelopmentTilak Joshi
 
HTML5 for PHP Developers - IPC
HTML5 for PHP Developers - IPCHTML5 for PHP Developers - IPC
HTML5 for PHP Developers - IPCMayflower GmbH
 
WHAT IS HTML5? (at CSS Nite Osaka)
WHAT IS HTML5? (at CSS Nite Osaka)WHAT IS HTML5? (at CSS Nite Osaka)
WHAT IS HTML5? (at CSS Nite Osaka)Shumpei Shiraishi
 
Using Web Standards to create Interactive Data Visualizations for the Web
Using Web Standards to create Interactive Data Visualizations for the WebUsing Web Standards to create Interactive Data Visualizations for the Web
Using Web Standards to create Interactive Data Visualizations for the Webphilogb
 
Making HTML5 Work Everywhere
Making HTML5 Work EverywhereMaking HTML5 Work Everywhere
Making HTML5 Work EverywhereTodd Anglin
 
課程名稱:八屏一雲時代來臨 教你HTML5六小時打通(3)
課程名稱:八屏一雲時代來臨 教你HTML5六小時打通(3)課程名稱:八屏一雲時代來臨 教你HTML5六小時打通(3)
課程名稱:八屏一雲時代來臨 教你HTML5六小時打通(3)Jollen Chen
 
NoSQL on microsoft azure april 2014
NoSQL on microsoft azure   april 2014NoSQL on microsoft azure   april 2014
NoSQL on microsoft azure april 2014Brian Benz
 
Html5 and-css3-overview
Html5 and-css3-overviewHtml5 and-css3-overview
Html5 and-css3-overviewJacob Nelson
 

Was ist angesagt? (20)

HTML5
HTML5HTML5
HTML5
 
Ie9 dev overview (300) beta
Ie9 dev overview (300) betaIe9 dev overview (300) beta
Ie9 dev overview (300) beta
 
Google’s PRPL Web development pattern
Google’s PRPL Web development patternGoogle’s PRPL Web development pattern
Google’s PRPL Web development pattern
 
New Elements & Features in HTML5
New Elements & Features in HTML5New Elements & Features in HTML5
New Elements & Features in HTML5
 
HTML5 and Search Engine Optimization (SEO)
HTML5 and Search Engine Optimization (SEO)HTML5 and Search Engine Optimization (SEO)
HTML5 and Search Engine Optimization (SEO)
 
Startup eng-camp 3
Startup eng-camp 3Startup eng-camp 3
Startup eng-camp 3
 
HTML5 Introduction
HTML5 IntroductionHTML5 Introduction
HTML5 Introduction
 
Echo HTML5
Echo HTML5Echo HTML5
Echo HTML5
 
Keypoints html5
Keypoints html5Keypoints html5
Keypoints html5
 
HTML5: An Introduction To Next Generation Web Development
HTML5: An Introduction To Next Generation Web DevelopmentHTML5: An Introduction To Next Generation Web Development
HTML5: An Introduction To Next Generation Web Development
 
HTML5 for PHP Developers - IPC
HTML5 for PHP Developers - IPCHTML5 for PHP Developers - IPC
HTML5 for PHP Developers - IPC
 
WHAT IS HTML5? (at CSS Nite Osaka)
WHAT IS HTML5? (at CSS Nite Osaka)WHAT IS HTML5? (at CSS Nite Osaka)
WHAT IS HTML5? (at CSS Nite Osaka)
 
Using Web Standards to create Interactive Data Visualizations for the Web
Using Web Standards to create Interactive Data Visualizations for the WebUsing Web Standards to create Interactive Data Visualizations for the Web
Using Web Standards to create Interactive Data Visualizations for the Web
 
HTML5 Video
HTML5 VideoHTML5 Video
HTML5 Video
 
Making HTML5 Work Everywhere
Making HTML5 Work EverywhereMaking HTML5 Work Everywhere
Making HTML5 Work Everywhere
 
HTML5 Tutorial
HTML5 TutorialHTML5 Tutorial
HTML5 Tutorial
 
Introduccion a HTML5
Introduccion a HTML5Introduccion a HTML5
Introduccion a HTML5
 
課程名稱:八屏一雲時代來臨 教你HTML5六小時打通(3)
課程名稱:八屏一雲時代來臨 教你HTML5六小時打通(3)課程名稱:八屏一雲時代來臨 教你HTML5六小時打通(3)
課程名稱:八屏一雲時代來臨 教你HTML5六小時打通(3)
 
NoSQL on microsoft azure april 2014
NoSQL on microsoft azure   april 2014NoSQL on microsoft azure   april 2014
NoSQL on microsoft azure april 2014
 
Html5 and-css3-overview
Html5 and-css3-overviewHtml5 and-css3-overview
Html5 and-css3-overview
 

Ähnlich wie Familiar HTML5 - 事例とサンプルコードから学ぶ 身近で普通に使わているHTML5

It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える
It is not HTML5. but ... / HTML5ではないサイトからHTML5を考えるIt is not HTML5. but ... / HTML5ではないサイトからHTML5を考える
It is not HTML5. but ... / HTML5ではないサイトからHTML5を考えるSadaaki HIRAI
 
WordCamp Thessaloniki2011 The NextWeb
WordCamp Thessaloniki2011 The NextWebWordCamp Thessaloniki2011 The NextWeb
WordCamp Thessaloniki2011 The NextWebGeorge Kanellopoulos
 
[2015/2016] HTML5 and CSS3 Refresher
[2015/2016] HTML5 and CSS3 Refresher[2015/2016] HTML5 and CSS3 Refresher
[2015/2016] HTML5 and CSS3 RefresherIvano Malavolta
 
[convergese] Adaptive Images in Responsive Web Design
[convergese] Adaptive Images in Responsive Web Design[convergese] Adaptive Images in Responsive Web Design
[convergese] Adaptive Images in Responsive Web DesignChristopher Schmitt
 
Wordcamp Thessaloniki 2011 The Nextweb
Wordcamp Thessaloniki 2011 The NextwebWordcamp Thessaloniki 2011 The Nextweb
Wordcamp Thessaloniki 2011 The NextwebGeorge Kanellopoulos
 
HTML5 Intoduction for Web Developers
HTML5 Intoduction for Web DevelopersHTML5 Intoduction for Web Developers
HTML5 Intoduction for Web DevelopersSascha Corti
 
Attractive HTML5~開発者の視点から~
Attractive HTML5~開発者の視点から~Attractive HTML5~開発者の視点から~
Attractive HTML5~開発者の視点から~Sho Ito
 
HTML5: An Overview
HTML5: An OverviewHTML5: An Overview
HTML5: An OverviewNagendra Um
 
HTML5 (and friends) - History, overview and current status - jsDay Verona 11....
HTML5 (and friends) - History, overview and current status - jsDay Verona 11....HTML5 (and friends) - History, overview and current status - jsDay Verona 11....
HTML5 (and friends) - History, overview and current status - jsDay Verona 11....Patrick Lauke
 
soft-shake.ch - Introduction to HTML5
soft-shake.ch - Introduction to HTML5soft-shake.ch - Introduction to HTML5
soft-shake.ch - Introduction to HTML5soft-shake.ch
 
Html5 drupal7 with mandakini kumari(1)
Html5 drupal7 with mandakini kumari(1)Html5 drupal7 with mandakini kumari(1)
Html5 drupal7 with mandakini kumari(1)Mandakini Kumari
 

Ähnlich wie Familiar HTML5 - 事例とサンプルコードから学ぶ 身近で普通に使わているHTML5 (20)

It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える
It is not HTML5. but ... / HTML5ではないサイトからHTML5を考えるIt is not HTML5. but ... / HTML5ではないサイトからHTML5を考える
It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える
 
Word camp nextweb
Word camp nextwebWord camp nextweb
Word camp nextweb
 
Word camp nextweb
Word camp nextwebWord camp nextweb
Word camp nextweb
 
WordCamp Thessaloniki2011 The NextWeb
WordCamp Thessaloniki2011 The NextWebWordCamp Thessaloniki2011 The NextWeb
WordCamp Thessaloniki2011 The NextWeb
 
HTML5 - A Whirlwind tour
HTML5 - A Whirlwind tourHTML5 - A Whirlwind tour
HTML5 - A Whirlwind tour
 
[2015/2016] HTML5 and CSS3 Refresher
[2015/2016] HTML5 and CSS3 Refresher[2015/2016] HTML5 and CSS3 Refresher
[2015/2016] HTML5 and CSS3 Refresher
 
HTML 5 - Overview
HTML 5 - OverviewHTML 5 - Overview
HTML 5 - Overview
 
[convergese] Adaptive Images in Responsive Web Design
[convergese] Adaptive Images in Responsive Web Design[convergese] Adaptive Images in Responsive Web Design
[convergese] Adaptive Images in Responsive Web Design
 
Wordcamp Thessaloniki 2011 The Nextweb
Wordcamp Thessaloniki 2011 The NextwebWordcamp Thessaloniki 2011 The Nextweb
Wordcamp Thessaloniki 2011 The Nextweb
 
Edge of the Web
Edge of the WebEdge of the Web
Edge of the Web
 
HTML5 Intoduction for Web Developers
HTML5 Intoduction for Web DevelopersHTML5 Intoduction for Web Developers
HTML5 Intoduction for Web Developers
 
Attractive HTML5~開発者の視点から~
Attractive HTML5~開発者の視点から~Attractive HTML5~開発者の視点から~
Attractive HTML5~開発者の視点から~
 
HTML5: An Overview
HTML5: An OverviewHTML5: An Overview
HTML5: An Overview
 
HTML5 (and friends) - History, overview and current status - jsDay Verona 11....
HTML5 (and friends) - History, overview and current status - jsDay Verona 11....HTML5 (and friends) - History, overview and current status - jsDay Verona 11....
HTML5 (and friends) - History, overview and current status - jsDay Verona 11....
 
html5
html5html5
html5
 
soft-shake.ch - Introduction to HTML5
soft-shake.ch - Introduction to HTML5soft-shake.ch - Introduction to HTML5
soft-shake.ch - Introduction to HTML5
 
Html5 drupal7 with mandakini kumari(1)
Html5 drupal7 with mandakini kumari(1)Html5 drupal7 with mandakini kumari(1)
Html5 drupal7 with mandakini kumari(1)
 
Html5
Html5Html5
Html5
 
Html5 more than just html5 v final
Html5  more than just html5 v finalHtml5  more than just html5 v final
Html5 more than just html5 v final
 
HTML5
HTML5HTML5
HTML5
 

Mehr von Sadaaki HIRAI

Prottを支えるチームと技術
Prottを支えるチームと技術Prottを支えるチームと技術
Prottを支えるチームと技術Sadaaki HIRAI
 
Goodpatch Berlin Report
Goodpatch Berlin ReportGoodpatch Berlin Report
Goodpatch Berlin ReportSadaaki HIRAI
 
Make the Prott Faster
Make the Prott FasterMake the Prott Faster
Make the Prott FasterSadaaki HIRAI
 
チームでつくるUIデザイン
チームでつくるUIデザインチームでつくるUIデザイン
チームでつくるUIデザインSadaaki HIRAI
 
いま使われているHTML5と、これからのHTML5
いま使われているHTML5と、これからのHTML5いま使われているHTML5と、これからのHTML5
いま使われているHTML5と、これからのHTML5Sadaaki HIRAI
 
Java & HTML5 History
Java & HTML5 HistoryJava & HTML5 History
Java & HTML5 HistorySadaaki HIRAI
 
はじめてのEmmet with Sublime Text2
はじめてのEmmet with Sublime Text2はじめてのEmmet with Sublime Text2
はじめてのEmmet with Sublime Text2Sadaaki HIRAI
 

Mehr von Sadaaki HIRAI (7)

Prottを支えるチームと技術
Prottを支えるチームと技術Prottを支えるチームと技術
Prottを支えるチームと技術
 
Goodpatch Berlin Report
Goodpatch Berlin ReportGoodpatch Berlin Report
Goodpatch Berlin Report
 
Make the Prott Faster
Make the Prott FasterMake the Prott Faster
Make the Prott Faster
 
チームでつくるUIデザイン
チームでつくるUIデザインチームでつくるUIデザイン
チームでつくるUIデザイン
 
いま使われているHTML5と、これからのHTML5
いま使われているHTML5と、これからのHTML5いま使われているHTML5と、これからのHTML5
いま使われているHTML5と、これからのHTML5
 
Java & HTML5 History
Java & HTML5 HistoryJava & HTML5 History
Java & HTML5 History
 
はじめてのEmmet with Sublime Text2
はじめてのEmmet with Sublime Text2はじめてのEmmet with Sublime Text2
はじめてのEmmet with Sublime Text2
 

Kürzlich hochgeladen

Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxNavinnSomaal
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteDianaGray10
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostZilliz
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DayH2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DaySri Ambati
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfRankYa
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsMiki Katsuragi
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 

Kürzlich hochgeladen (20)

Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptx
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test Suite
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DayH2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdf
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering Tips
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 

Familiar HTML5 - 事例とサンプルコードから学ぶ 身近で普通に使わているHTML5

  • 1. Familiar HTML5 HTML5 HTML5 Conference Miyazaki 2013 @sada_h 2013/02/10
  • 2. html5j.org / HTML5 sadah.github.com / @sada_h / techlog Ruby / Rails / HTML5 / JavaScript / Java Kakaku.com, Inc. Engineer 2012/08 [ ] [cena( )]
  • 3.
  • 4.
  • 6. HTML5 W3C Year Spec Topic 1993 HTML 1.0 IEFT 1997 HTML 3.2 W3C W3C 1997 HTML 4.0 W3C 1999 HTML 4.0.1 W3C 2000 XHTML 1.0 W3C HTML 4.0.1 XML
  • 7. HTML5 W3C Year Spec Topic 2001 XHTML 1.1 W3C 2007 HTML5 W3C (WG ) 2009 XHTML 2.0 XHTML2 WG 2011 HTML5 W3C 2012 HTML5 W3C (2012/12/17)
  • 8.
  • 9.
  • 10. HTML5
  • 11.
  • 12.
  • 13. HTML5 HTML5
  • 14.
  • 15. HTML5
  • 16. HTML5 Markup HTML5 Apple LAWSON UNITED ARROWS LTD. BEAMS spec HTML5 / HTML 5.1
  • 17. HTML5 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 figu re footer header hgroup mark meter nav output progress section summary time vi deo".split(" "); for(var i=0; i<elements.length; i++){ document.createElement(elements[i]); } Sample: HTML5 fall back Sample
  • 18. JavaScript Window/History/Location HTML5 Thanks myakura! 5.2 The Window object — HTML5 5.5.2 The History interface 5.5.3 The Location interface Selectors API jQuery Selectors API Level 1 jquery-1.8.2.js
  • 19. WebStorage WebStorage Google twitter Twitter Google Web Storage IndexedDB HTML5Rocks … IndexedDB TODO HTML5 Rocks
  • 20. WebStorage 5MB QUOTA_EXCEEDED_ERR localStorage.setItem("key","text"); text = localStorage.getItem("key"); sessionStorage.setItem("key",text); text = sessionStorage.getItem("key"); Sample: WebStorage Sample
  • 21. CSS3 Backgrounds,Borders border-radius text-shadow cena transform / transition / animation CSS Backgrounds and Borders Module Level 3 CSS Transforms / CSS Animations modern.IE BrowserStack Adobe® BrowserLab
  • 22. CSS3 Backgrounds,Borders border-radius: 10px 10px 10px 10px; box-shadow: 10px 10px 10px #aaa; text-shadow: 5px 5px 5px #aaa; Sample: CSS3 Backgrounds, Borders CSS Variables Sample: CSS Variables Module Level 1
  • 23. MediaQueries World Wide Web Consortium (W3C) Microsoft Japan NTT bookmarklet Media Queries Responsive design testing tool – Viewport Resizer – Device simulation tool Responsive Design Testing
  • 24. MediaQueries @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 Web PC
  • 25. WebFonts DevTools BEAMS NTT FONTPLUS sadah.github.com Google Web Fonts Compare
  • 26. WebFonts /* using Google Web Fonts */ @font-face { font-family: 'Allerta Stencil'; src: url(http://themes.googleusercontent.com/static/fonts/allertastencil/v4/Cd SZfRtHbQrBohqmzSdDYKqcRvMv63bhrwdN_8Hu8N8.woff) format('woff'); } .webfonts{ font-family: 'Allerta Stencil', sans-serif; } Sample: WebFonts Web Fonts IT Extension Chrome - WhatFont Chrome - Google Font Previewer for Chrome
  • 27. Video … YouTube - HTML5 iBooks Author - 26 HTML5 - YouTube
  • 28. Canvas Canvas GoogleMaps Thanks komasshu ! / Google Maps - WSJ spec HTML Canvas 2D Context
  • 29. Canvas 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
  • 30. Canvas + WebFonts ctx.fillStyle = "navy"; ctx.font = "72px 'Cabin Sketch', cursive"; ctx.fillText("WebFonts", 200 , 50); Sample: Canvas + WebFonts Canvas WebFonts WebFonts 1 WebFont Loader WebFont Loader - Google Web Fonts
  • 31. SVG Thanks Daniel, wks, myakura. Election 2010 - The Wall Street Journal Online Raphaël—JavaScript Library The New York Times
  • 32. SVG <svg width="800" height="300"> <circle cx="150" cy="150" r="100" stroke="blue" fill="white" stroke-width="5" /> </svg> <img src="image.svg"> Sample: SVG Sample: SVG + WebFonts Raphaël … Raphaël · Australia Raphaël · Text Rotation
  • 33. FullScreenAPI Mac Window Flickr - Photo Sharing!
  • 35. History API History API(pjax) github flickr facebook sadah github IMG_6077 | Flickr - Photo Sharing! HTML5 Demo: HTML5 History API
  • 36. File API & Drag and Drop Drag and Drop(& File API) - Google+
  • 37. File API & Drag and Drop // jquery // var files = e.originalEvent.dataTransfer.files; var files = e.dataTransfer.files; var fileName = files[0].name; var fileSize = files[0].size; var reader = new FileReader(); reader.onload = function() { var line = reader.result; } reader.readAsText(file[0], 'UTF-8'); Sample: Drag and Drop
  • 38. microdata microdata Barack Obama Home - schema.org - Google microdata - - - Google Structured Data Testing Tool
  • 39. microdata <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 microdata - - -
  • 40. Custom Data Attributes Barack Obama 3.2.3.9 Embedding custom non-visible data with the data-* attributes
  • 41. data URL Scheme RFC 2397 - The "data" URL scheme
  • 42. data URL Scheme <img src="data:image/jpeg;base64,/9j/4AAQSkZJ ... " var strDataURI = document.getElementById("canvas-area").toDataURL("image/pn g"); Sample: data URL Scheme Sample: data URL Scheme + Canvas Sample: Video + Canvas + data URL Scheme + FullScreen
  • 43. Performance Navigation Timing Navigation Timing link prefetch script defer async 4.12 Links — HTML5 4.3 Scripting — HTML5
  • 44. Performance HTML5 HTTP 2.0 SPDY draft-ietf-httpbis-http2-01 - Hypertext Transfer Protocol version 2.0 SPDY - The Chromium Projects draft-mbelshe-httpbis-spdy-00 - SPDY Protocol
  • 45. Drag and Drop Canvas
  • 46. HTML5
  • 47.
  • 48.
  • 50. The End Thank you so mach. Familiar HTML5 @sada_h http://bit.ly/h5m2013b2