Html5 Loading

Loading...

Flash Player 9 (or above) is needed to view presentations.
We have detected that you do not have it on your computer. To install it, go here.

0 comments

Post a comment

    Post a comment
    Embed Video
    Edit your comment Cancel

    1 Favorite

    Html5 Loading - Presentation Transcript

    1. HTML5 Loading Takashi Kikuchi 2009.10.11
    2. • Web Directions East • ASCII • •
    3. HTML5
    4. HTML5
    5. HTML5
    6. Working Draft google Insights 2009/10/08
    7. HTML5
    8. HTML • 1991 Tim Berners Lee • 1995 HTML2.0 • 1997 HTML3.2 (W3C) • 1999 HTML4.01 (W3C)
    9. XHTML • 2000 XHTML1.0 • 2001 XHTML1.1 • 2001 XHTML2.0 • 2009 XHTML2.0
    10. Web XHTML+ SVG+ SMIL+XForm Brendan Eich, June 2004
    11. XHTML2 ??
    12. HTML5 • 2003 Opera CTO Håkom Lie Web Forms2 • 2004. 04 Web Applications 1.0 • 2004. 06 WHATWG Opera, Safari, Mozilla • 2007.03 W3C HTML5 WG • 2009.10 Last call
    13. HTML5 Web Forms2 + Web Application1.0
    14. HTML5 overview Web Workers Geolocation API HTML5 Web Socket Web Database Web Storage
    15. HTML5 overview Web Workers Geolocation API HTML5 Web Socket Web Database Web Storage
    16. Web Forms
    17. Webforms • <input id=form-1 name=haha type=text autofocus required> • <input id=form-5 name=email type=email placeholder="email please"> • <input id=form-4 name=shoesize type=number min=18 max=25>
    18. ? Ian Hickson = “Hixie” ( Opera Google)
    19. HTML5 • •
    20. HTML5 HTML XML
    21. HTML5 HTML XML
    22. HTML5 XHTML <meta ..... content="text/html; charset=utf-8" /> HTML XML
    23. HTML5 • <img src=logo.png alt=”” /> • <img src=‘logo.png’ alt=`` /> • <img src=”logo.png” alt=”” >
    24. HTML5 • <a><li>HTML5 </a><li>
    25. 93% invalid
    26. HTML5 !!
    27. HTML5 DOM
    28. HTML5 Document Object Model
    29. HTML5 IE5.0
    30. HTML5 <div> Document <h1>DOM</h1> <ul> div <li>DOM </li> ul h1 </ul> </div> li
    31. HTML5
    32. Doctype, DTD, charset <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html> <head> <meta http-equiv="content-type" content="text/html;charset=utf-8" /> </head> <body> </body> </html>
    33. Doctype <!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Strict//EN” “http://www.w3.org/TR/xhtml1/DTD/ xhtml1-strict.dtd”>
    34. Doctype <!DOCTYPE html>
    35. charset <meta http-equiv=”content-type” content="text/html;charset=utf-8” />
    36. charset <meta charset=”utf-8" /> or <meta charset=”utf-8">
    37. Doctype, DTD, charset <!DOCTYPE html> <html> <head> <meta charset=”utf-8” /> </head> <body> </body> </html>
    38. XHTML1.0 <div id=”header”> <div id=”nav”> <div id=”main”> <div id=”sidebar”> <div id=”footer”>
    39. HTML5 <header> <nav> <section id=”main”> <aside> <footer>
    40. HTML5 <header> <nav> <section id=”main”> <aside> <footer>
    41. <header> <header> <h1>allWeb </h1> <p>allWeb </p> </header>
    42. <nav> <nav id=”global”> <h1> </h1> <ul> <li> </li> <li> </li> </ul> </nav>
    43. <section> <section> <h1>HTML5 </h1> <p>HTML5 </p> </section>
    44. <article> <article> <header> <h1>DOM </h1> </header> <p>DOM HTML5 </p> <footer> </footer> </article>
    45. <aside> <aside> <section> <h1> </h1> </section> </aside>
    46. <footer> <footer> <ul> <li> </li> <li> </li> </ul> </footer>
    47. <small> <footer> <p> <small> &copy Web Directions East LLC </small> </p> </footer>
    48. <img /> <img alt=”” src=”” /> Decorative Images
    49. validator.nu
    50. HTML5
    51. HTML5
    52. HTML5 reset.css article, aside, footer, header, legend,nav,section {display: block;}
    53. html5.js <!--[if lte IE 8]> <script src="http:// html5shiv.googlecode.com/svn/trunk/ html5.js"></script> <![endif]-->
    54. CSS3
    55. CSS3 Difference is not broken. “Walls Come Tumbling Down”-Andy Clarke
    56. CSS3 HANDCRAFTED CSS Dan Cederholm
    57. vender prefix • -webkit- • -atsc- • -moz- • -wap- • -ms- • -o- • -khtml- • mso-
    58. text-shadow
    59. text-shadow text-shadow{} -webkit-text-shadow{} -moz-text-shadow{}
    60. text-shadow text-shadow: #bbb 2px 2px 2px;
    61. RGBa
    62. RGBa rgba(55, 146, 179, 0.8) rgba( , , , )
    63. Generated Content
    64. generated content h3:before {content: url(img/bracket- left.png); } h3:after {content: url(img/bracket- right.png);}
    65. Gradient
    66. Gradient background-image: -moz-linear-gradient( bottom, top, from(rgba(81, 70, 61,1)), color-stop(50%, rgb(107, 92, 79,.7)), to(rgba(81, 70, 61,.8)));
    67. Gradient background-image: -moz-linear-gradient( bottom, top, from(rgba(81, 70, 61,1)), color-stop(50%, rgb(107, 92, 79,.7)), to(rgba(81, 70, 61,.8)));
    68. Gradient background-image: -moz-linear-gradient( bottom, top, from(rgba(81, 70, 61,1)), color-stop(50%, rgb(107, 92, 79,.7)), to(rgba(81, 70, 61,.8)));
    69. transition
    70. webkit-transition • 0.4 • 0.2 •
    71. template layout module
    72. template layout module
    73. template layout module body { display: "aaa" "bcd" } #head{ position: a } #nav{ position: b } #adv{ posiiton: c } #body { position: d }
    74. HTML5 & CSS3
    75. Flickr • http://www.flickr.com/photos/theamarand/3622334673/ • http://www.flickr.com/photos/expressmonorail/ 3499968411/sizes/o/
    76. 11 11 13 Web “ Web ”
    77. • Twitter @wdeast Andy Clarke

    + satoshi kikuchisatoshi kikuchi, 1 month ago

    custom

    296 views, 1 favs, 1 embeds more stats

    HTML5 Loading is about HTML5 and CSS3 in Japanese.

    More info about this document

    © All Rights Reserved

    Go to text version

    • Total Views 296
      • 168 on SlideShare
      • 128 from embeds
    • Comments 0
    • Favorites 1
    • Downloads 9
    Most viewed embeds
    • 128 views on http://east.webdirections.org

    more

    All embeds
    • 128 views on http://east.webdirections.org

    less

    Flagged as inappropriate Flag as inappropriate
    Flag as inappropriate

    Select your reason for flagging this presentation as inappropriate. If needed, use the feedback form to let us know more details.

    Cancel
    File a copyright complaint
    Having problems? Go to our helpdesk?

    Tags