Presentation is loading. Please wait.

Presentation is loading. Please wait.

HTML 5. Emlékeztető A november 24.-ei előadás és gyakorlat elmarad December 1.-én pótoljuk az elmaradt előadást az A/1 228-as teremben 16-18-ig December.

Similar presentations


Presentation on theme: "HTML 5. Emlékeztető A november 24.-ei előadás és gyakorlat elmarad December 1.-én pótoljuk az elmaradt előadást az A/1 228-as teremben 16-18-ig December."— Presentation transcript:

1 HTML 5

2 Emlékeztető A november 24.-ei előadás és gyakorlat elmarad December 1.-én pótoljuk az elmaradt előadást az A/1 228-as teremben 16-18-ig December 1.-én kell leadni a féléves feladatokat a gyakorlati óra keretében 12-14-ig December 8.-án tartjuk a pótZH-t a sikertelen ZH- t írók számára az előadás ezért fél órával később kezdődik.

3 HTML5 ~= HTML + CSS3 + JavaScript APIs

4 HTML Draft Specification of the next iteration of HTML HTML 4 (1997) and XHTML 1 (2000) Clearer separation of data and layout/style Makes what you would already do in HTML easier New Content Tags,,,,, New Media Tags,, New Dynamic drawing graphic tag A tag that allows programmatic drawing via JavaScript Inline metadata to help search engines identify content Moxie Interactive

5 CSS3 Specification currently under active development since 2005 Improved selectors for determining which content to effect (good support across modern browsers) Embeddable font support (TTF, OTF) Improved text layout with column support Rounded corners, Reflections (WebKit) Multiple backgrounds, transforms (rotation, scale, etc), animations (WebKit)

6 JavaScript APIs Local data storage Application Cache (offline access) Multitasking (Worker processes) Sockets (real-time server communication: chat, games, etc.) Native Drag and Drop events GeoLocation Lots of active 3 rd party libraries (Prototype, jQuery, etc)

7 The Good News! Good support on modern mobile devices (iOS, Android) Simpler, more intuitive syntax Video and Audio without requiring a plugin Incremental improvements to previous HTML challenges Much needed next step in HTML evolution Creative enhancements: Rounded corners, gradients, text layout Emergence of more advanced technologies such as O3D (WebGL) Easier SEO than plugin technologies Promising Mobile JS Frameworks (Sencha, jQTouch)

8 The Bad News The HTML5 spec is DRAFT and is in ongoing development (change) Video support is not standardized Not currently a single codec that all browsers will support Google WebM (VP 8) (open sourced by Google) Ogg Theora (open source) h.264/MP4 (potential licensing issues) No supported DRM for video or audio Currently no support for cue points or alpha (transparent) video

9 The Bad News…Continued Limited desktop browser support Only the newest and best have reasonable support Internet Explorer will not have decent support until IE9 Challenges getting consistent page display across browsers Graceful page degradation is potentially complex Currently no designer tools for creating HTML5 animation or interactivity (all must be implemented by a developer) Limited developer debugging tools

10 Introduction The web is constantly evolving. New and innovative websites are being created every day, pushing the boundaries of HTML in every direction. HTML 4 has been around for nearly a decade now, and publishers seeking new techniques to provide enhanced functionality are being held back by the constraints of the language and browsers. To give authors more flexibility and interoperability, and enable more interactive and exciting websites and applications, HTML 5 introduces and enhances a wide range of features including form controls, APIs, multimedia, structure, and semantics

11 Introduction Work on HTML 5, which commenced in 2004, is currently being carried out in a joint effort between the W3C HTML WG and the WHATWG. Many key players are participating in the W3C effort including representatives from the four major browser vendors: Apple, Mozilla, Opera, and Microsoft; and a range of other organisations and individuals with many diverse interests and expertise. Note that the specification is still a work in progress and quite a long way from completion. As such, it is possible that any feature discussed in this lecture may change in the future.

12 HTML5 Demos http://html5demos.com/

13 Structure HTML 5 introduces a whole set of new elements that make it much easier to structure pages. Most HTML 4 pages include a variety of common structures, such as headers, footers and columns and today, it is fairly common to mark them up using div elements, giving each a descriptive id or class. Diagram illustrates a typical two-column layout marked up using divs with id and class attributes. It contains a header, footer, and horizontal navigation bar below the header. The main content contains an article and sidebar on the right.

14 Structure The use of div elements is largely because current versions of HTML 4 lack the necessary semantics for describing these parts more specifically. HTML 5 addresses this issue by introducing new elements for representing each of these different sections. The div elements can be replaced with the new elements: header, nav, section, article, aside, & footer.

15 Markup The markup for that document could look like the following:.........

16 Markup There are several advantages to using these elements. When used in conjunction with the heading elements (h1 to h6), all of these provide a way to mark up nested sections with heading levels, beyond the six levels possible with previous versions of HTML. The specification includes a detailed algorithm for generating an outline that takes the structure of these elements into account and remains backwards compatible with previous versions. This can be used by both authoring tools and browsers to generate tables of contents to assist users with navigating the document.

17 Markup For example, the following markup structure marked up with nested section and h1 elements: Level 1 Level 2 Level 3 Note that for better compatibility with current browsers, it is also possible to make use of the other heading elements (h2 to h6) appropriately in place of the h1 elements

18 Sections By identifying the purpose of sections in the page using specific sectioning elements, assistive technology can help the user to more easily navigate the page. For example, they can easily skip over the navigation section or quickly jump from one article to the next without the need for authors to provide skip links. Authors also benefit because replacing many of the divs in the document with one of several distinct elements can help make the source code clearer and easier to author.

19 Header Section The header element represents the header of a section. Headers may contain more than just the section’s heading—for example it would be reasonable for the header to include sub headings, version history information or bylines. A Preview of HTML 5 By Lachlan Hunt Example Blog Insert tag line here.

20 Footer Section The footer element represents the footer for the section it applies to. A footer typically contains information about its section such as who wrote it, links to related documents, copyright data, and the like. © 2007 Example Inc.

21 Nav Element The nav element represents a section of navigation links. It is suitable for either site navigation or a table of contents. Home Products Services About

22 Aside Element The aside element is for content that is tangentially related to the content around it, and is typically useful for marking up sidebars. Archives September 2007 August 2007 July 2007

23 Section Element The section element represents a generic section of a document or application, such as a chapter, for example. Chapter 1: The Period It was the best of times, it was the worst of times, it was the age of wisdom, it was the age of foolishness, it was the epoch of belief, it was the epoch of incredulity, it was the season of Light, it was the season of Darkness,...

24 Article Element The article element represents an independent section of a document, page or site. It is suitable for content like news or blog articles, forum posts or individual comments. Comment #2 by Jack O'Niell August 29th, 2007 at 13:58 That's another great article!

25 Video and Audio In recent years, video and audio on the web has become increasingly viable and sites like YouTube, Viddler, Revver, MySpace, and dozens of others are making it easy for anyone to publish video and audio.YouTubeViddlerRevverMySpace However, since HTML currently lacks the necessary means to successfully embed and control multimedia itself, many sites are relying on Flash to provide that functionality. Although it is possible to embed multimedia using various plug-ins (such as QuickTime, Windows Media, etc.), Flash is currently the only widely deployed plugin that provides a cross-browser compatible solution with the desired APIs for developers.

26 Video and Audio As evidenced by the various Flash-based media players, authors are interested in providing their own custom-designed user interfaces, which generally allow users to play, pause, stop, seek, and adjust volume. The plan is to provide this functionality in browsers by adding native support for embedding video and audio and providing DOM APIs for scripts to control the playback. The new video and audio elements make this really easy. Most of the APIs are shared between the two elements, with the only differences being related to the inherent differences between visual and non- visual media.

27 Video and Audio Both Opera and WebKit have released builds with partial support for the video element. You may download the experimental build of Opera or a recent nightly build of WebKit to try out these examples. Opera includes support for Ogg Theora and WebKit supports all the formats that are supported by QuickTime, including third party codecs. The simplest way to embed a video is to use a video element and allow the browser to provide a default user interface. The controls attribute is a boolean attribute that indicates whether or not the author wants this UI on or off by default. Download movie

28 Video and Audio The optional poster attribute can be used to specify an image which will be displayed in place of the video before the video has begun playing. Although there are some video formats that support their own poster frame feature, such as MPEG-4, this provides an alternative solution that can work independently of the video format. It is just as simple to embed audio into a page using the audio element. Most of the attributes are common between the video and audio elements, although for obvious reasons, the audio element lacks the width, height, and poster attributes. Download song

29 Source Element HTML 5 provides the source element for specifying alternative video and audio files which the browser may choose from based on its media type or codec support. The media attribute can be used to specify a media query for selection based on the device limitations and the type attribute for specifying the media type and codecs. Note that when using the source elements, the src attribute needs to be omitted from their parent video or audio element or the alternatives given by the source elements will be ignored.

30 Video and Audio <source src="video.3gp" type="video/3gpp" media="handheld"> <source src="video.ogv" type="video/ogg; codecs=theora, vorbis">

31 Video and Audio For authors who want a little more control over the user interface so that they can make it fit the overall design of the web page, the extensive API provides several methods and events to let scripts control the playback of the media. The simplest methods to use are the play(), pause(), and setting currentTime to rewind to the beginning. The following example illustrates the use of these. var video = document.getElementById("video"); Play Pause

32 Canvas function draw() { var canvas = document.getElementById(“canvas”); if (canvas.getContext) { var ctx = canvas.getContext(“2d”); ctx.fillStyle = “rgb(200,0,0)”; ctx.fillRect (10,10,55,50); ctx.fillStyle = “rgb(0,0,200)”; ctx.fillRect (30,30,55,50); }

33 Form Enhancements Placeholder text Specific text input: email, URL, number, search Slider Date picker User Agent validation

34 CSS Effects Rounded corners Gradients Box and text shadows Fonts Transparencies Multiple background images and border images Multiple columns and grid layout Box sizing Stroke and outlines Animation, movement and rotation Improved selectors

35 CSS Effect Example.amazing { border: 1px solid blue; color: red; background-color: gold; -webkit-border-radius: 40px; -moz-border-radius: 40px; border-radius: 40px; -webkit-box-shadow: 8px 8px 6px #474747; -moz-box-shadow: 8px 8px 6px #474747; box-shadow: 8px 8px 6px #474747; text-shadow: 8px 8px 2px #595959; filter: dropshadow(color=#595959, offx=8, offy=8); } Amazing CSS Effects http://css3generator.com/

36 CSS Timelines http://mattbango.com/notebook/web-development/pure-css-timeline/

37 Offline Applications … someapp.manifest CACHE MANIFEST #v1.01 #Explicitly cached files CACHE: index.html Stylesheet.css Images/logo.png NETWORK: Search.cfm Login.cfm /dynamicpages FALLBACK: /dynamicpage.cfm /static.html http://www.whatwg.org/specs/web-apps/current-work/multipage/offline.html

38 Why Local Storage? Data accessed over the internet can never be as fast as accessing data locally Data accessed over internet not secure HTML5 storage is on client

39 Local Storage Beyond cookies- local storage – Manipulated by JavaScript – Persistent – 5MB storage per “origin” – Secure (no communication out of the browser) Session storage – Lasts as long as the browser is open – Each page and tab is a new session Browser based SQLite or IndexedDB

40 Cookies Invented early in Web’s history as a way to store persistent data (“magic cookies”) Small pieces of information about a user stored by Web server as text files on user’s computer Can be temporary or persistent

41 Cookies Included with every HTTP request – slows down application by transmitting same information repeatedly Sends unencrypted data over internet with every HTTP request Limited to 4KB data Example: filling out a text form field

42 Cookies not enough More storage space On the client Beyond page refresh Not transmitted to server

43 HTML5 Storage Provides standardized API Implemented natively Consistent across browsers HTML5 storage is a specification named “Web Storage” Previously part of HTML5 specifications Split into its own specification Different browsers may call it “Local Storage” or “DOM Storage”

44 Local Storage Web storage window.localStorage[‘value’] = ‘Save this!’; Session storage sessionStorage.useLater(‘fullname’, ‘Garth Colasurdo’); alert(“Hello ” + sessionStorage.fullname); Database storage var database = openDatabase(“Database Name”, “Database Version”); database.executeSql(“SELECT * FROM test”, function(result1) { … }); http://dev.w3.org/html5/webstorage/

45 User Agent Storage

46 Using HTML5 Storage Tracking changes to the HTML5 storage area if (window.addEventListener) { window.addEventListener("storage", handle_storage, false); } else { window.attachEvent("onstorage", handle_storage); };

47 Using HTML5 Storage Tracking changes to the HTML5 storage area The handle_storage callback function will be called with a StorageEvent object, except in Internet Explorer where the event object is stored in window.event. function handle_storage(e) { if (!e) { e = window.event; } }

48 Using HTML5 Storage PROPERTYTYPEDESCRIPTION key stringthe named key that was added, removed, or modified oldValue any the previous value (now overwritten), or null if a new item was added newValue any the new value, or null if an item was removed url * stringthe page which called a method that triggered this change StorageEvent Object

49 Using HTML5 Storage Limitations in current browsers: 5 MB of storage from each origin.origin Can not ask user for more storage (except for Opera, sort of)

50 Beyond Key/Value Pairs: Competing Visions Web SQL Database The Web SQL Database specification has been implemented by four browsers and platforms.Web SQL Database Safari 4.0+ Chrome 4.0+ Opera 10.5+ Mobile Safari 3.0+ Android 2.0+

51 HTML & XML The advantage of defining HTML 5 in terms of the DOM is that the language itself can be defined independently of the syntax. There are primarily two syntaxes that can be used to represent HTML documents: the HTML serialisation (known as HTML 5) and the XML serialisation (known as XHTML 5). The HTML serialisation refers to the syntax that is inspired by the SGML syntax from earlier versions of HTML, but defined to be more compatible with the way browsers actually handle HTML in practice.

52 Benefits of Using HTML Backwards compatible with existing browsers Authors are already familiar with the syntax The lenient and forgiving syntax means there will be no user-hostile “Yellow Screen of Death” if a mistake accidentally slips through Convenient shorthand syntax, e.g. authors can omit some tags and attribute values (NOTE: The Yellow Screen of Death occurs when an ASP.NET web application encounters a problem and crashes. It is also used to refer to an error in the parsing of an XML document in a web browser. )

53 Benefits of Using XHTML Strict XML syntax encourages authors to write well-formed markup, which some authors may find easier to maintain Integrates directly with other XML vocabularies, such as SVG and MathML Allows the use of XML Processing, which some authors use as part of their editing and/or publishing processes

54 What HTML5 is NOT A magic bullet for all your mobile and desktop-to-mobile woes A replacement for technologies such as Flash or Silverlight Immersive RLP’s would be much more time consuming Certain functionality would not be possible or cost-prohibitive While HTML5 quickly fixes some small-scale HTML issues (video, audio, layout and fonts), it does not instantly solve architectural needs for large-scale immersive cross-platform applications

55 Summary Good HTML5 has new standards and features that are long overdue Allows display of multimedia content without need of a plugin Good and rapidly progressing mobile support Bad Spotty desktop browser support Complexity creating consistent experiences across platforms Technical limitations on what can creatively be done

56 Recommendations Still consider separate desktop and mobile experiences For HTML-based desktop experiences, consider simplified modular layout for streamlined restyling on mobile platforms Don’t expect what has been traditionally executed in Flash or Silverlight to be cost-effective or even possible in HTML Clearly understand the target USER and their needs before recommending a technology Design for the chosen technology

57 Related Links http://www.pcworld.com/article/196670/google_announces_webm_video_format_the_future_of_html5_video.ht mlhttp://www.pcworld.com/article/196670/google_announces_webm_video_format_the_future_of_html5_video.ht ml http://en.wikipedia.org/wiki/HTML5 http://www.deepbluesky.com/blog/-/browser-support-for-css3-and-html5_72/ http://www.html5test.com/ http://newteevee.com/2010/05/13/hulu-html5-isnt-ready-for-prime-time/ http://www.htmlgoodies.com/daily_news/article.php/386914/Is-HTML-5-the-Flash-Killer-Its-sure-got-the- potential.htmhttp://www.htmlgoodies.com/daily_news/article.php/386914/Is-HTML-5-the-Flash-Killer-Its-sure-got-the- potential.htm http://slides.html5rocks.com/ http://www.deepbluesky.com/blog/-/browser-support-for-css3-and-html5_72/ http://www.sencha.com/products/touch/ http://html5watch.tumblr.com http://www.css3.info http://www.chromeexperiments.com http://www.apple.com/html5/ http://www.canvasdemos.com http://html5demos.com http://w3.org/TR/css3-roadmap/ http://www.w3schools.com/html5/

58 Cautions Browser implementation is fragmented Standards are in development – HTML Candidate Recommendation is scheduled for 2012 – CSS3 is in multiple drafts and proposals – ECMA-262 (edition 3) (or JavaScript 1.5) New markup and architecture design


Download ppt "HTML 5. Emlékeztető A november 24.-ei előadás és gyakorlat elmarad December 1.-én pótoljuk az elmaradt előadást az A/1 228-as teremben 16-18-ig December."

Similar presentations


Ads by Google