<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>未完待续 &#187; HTML5</title>
	<atom:link href="http://ioio.name/tag/html5/feed" rel="self" type="application/rss+xml" />
	<link>http://ioio.name</link>
	<description>To Be Continued</description>
	<lastBuildDate>Thu, 09 Feb 2012 05:20:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>关于浏览器支持localStorage的统计</title>
		<link>http://ioio.name/browser-localstorage.html</link>
		<comments>http://ioio.name/browser-localstorage.html#comments</comments>
		<pubDate>Thu, 13 Jan 2011 06:09:17 +0000</pubDate>
		<dc:creator>枯藤昏鸦</dc:creator>
				<category><![CDATA[就是不分类]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[localStorage]]></category>

		<guid isPermaLink="false">http://ioio.name/?p=1738</guid>
		<description><![CDATA[注：+该版本及该本以上，-该版本以下，不包含该版本 主要测试以下三种存储方案的支持程度： localStorage: false userdata: false globalStorage: false Chrome4+ 开始支持localStorage Firefox3.5+开始支持localStorage Firefox1.5+支持globalStorage IE8+支持localStorage IE7兼容模式支持localStorage IE5.5+支持userdata Safari 4+ 支持localStorage Opera10.5+支持localStorage Netscape Navigator最后一版（9.0.0.6）支持localStorage，其余版本未测 &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- 我是分割线 &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- 因此，拟使用localStorage来作为前端存储主干方案，退化策略如下： 采用特性探测，按如下顺序提供存储支持： localStorage globalStorage userdata Cookie Cookie也可能被禁用，如果都不支持，那就只有抱歉了，这种情况下网站也登录不了滴。 其它可以采用的扩展存储方法： Google Gears SWF 另外，临时会话存储sessionStorage尚未正式测试过，支持的浏览器不多。可以考虑作为扩展方案，备用方案可采用window.name，但数据量有限，待评估。 以上数据供参考，欢迎有更了解的同学提意见和建议。 update: 使用userdata会使getAttribute被重写，需要做兼容处理，务必小心使用。 -EOF- Related posts:String.prototype.split()兼容问题Ubuntu 9.10 安装 ChromeHTML5相关资源一周开源项目集锦(2011/11/01)Google官方博客群一览Copyright &#169; 2005~2011 &#124; Permalink &#124; 2 Comments &#124; Close To [...]]]></description>
			<content:encoded><![CDATA[<p>注：+该版本及该本以上，-该版本以下，不包含该版本<br />
主要测试以下三种存储方案的支持程度：<br />
localStorage: false<br />
userdata: false<br />
globalStorage: false </p>
<p>Chrome4+ 开始支持localStorage</p>
<p>Firefox3.5+开始支持localStorage<br />
Firefox1.5+支持globalStorage</p>
<p>IE8+支持localStorage<br />
IE7兼容模式支持localStorage<br />
IE5.5+支持userdata</p>
<p>Safari 4+ 支持localStorage<br />
Opera10.5+支持localStorage</p>
<p>Netscape Navigator最后一版（9.0.0.6）支持localStorage，其余版本未测</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- 我是分割线 &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
因此，拟使用localStorage来作为前端存储主干方案，退化策略如下：<br />
采用特性探测，按如下顺序提供存储支持：<br />
localStorage<br />
globalStorage<br />
userdata<br />
Cookie<br />
Cookie也可能被禁用，如果都不支持，那就只有抱歉了，这种情况下网站也登录不了滴。</p>
<p>其它可以采用的扩展存储方法：<br />
Google Gears<br />
SWF</p>
<p>另外，临时会话存储sessionStorage尚未正式测试过，支持的浏览器不多。可以考虑作为扩展方案，备用方案可采用window.name，但数据量有限，待评估。</p>
<p>以上数据供参考，欢迎有更了解的同学提意见和建议。</p>
<p>update:<br />
使用userdata会使getAttribute被重写，需要做兼容处理，务必小心使用。<br />
-EOF-</p>
<hr /><h2>Related posts:</h2><ul><li><a href="http://ioio.name/string-prototype-split.html" rel="bookmark" title="Permanent Link: String.prototype.split()兼容问题">String.prototype.split()兼容问题</a></li><li><a href="http://ioio.name/chrome-on-ubuntu-9-10.html" rel="bookmark" title="Permanent Link: Ubuntu 9.10 安装 Chrome">Ubuntu 9.10 安装 Chrome</a></li><li><a href="http://ioio.name/html5-resources.html" rel="bookmark" title="Permanent Link: HTML5相关资源">HTML5相关资源</a></li><li><a href="http://ioio.name/open-source-20111101.html" rel="bookmark" title="Permanent Link: 一周开源项目集锦(2011/11/01)">一周开源项目集锦(2011/11/01)</a></li><li><a href="http://ioio.name/google-blog-directory-source.html" rel="bookmark" title="Permanent Link: Google官方博客群一览">Google官方博客群一览</a></li></ul><hr /><small>Copyright &copy; 2005~2011 | <a href="http://ioio.name/browser-localstorage.html" title="Permalink">Permalink</a> | <a href="http://ioio.name/browser-localstorage.html#comments">2 Comments</a> | <a href="http://closetou.com" title="Close To U">Close To U</a> <br />
<a href="http://feeds.feedburner.com/miss">订阅</a> <a href="https://twitter.com/tearnon">Twitter</a> <a href="http://ioio.name/godaddy">域名优惠码</a> <a href="http://ioio.name/mt">Media Temple空间</a>
<a href="http://mdiatemple.com/" title="Domain Sale! $6.89 .com at GoDaddy">主机/域名优惠码</a>
</small> )</small>]]></content:encoded>
			<wfw:commentRss>http://ioio.name/browser-localstorage.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>HTML5相关资源</title>
		<link>http://ioio.name/html5-resources.html</link>
		<comments>http://ioio.name/html5-resources.html#comments</comments>
		<pubDate>Thu, 26 Aug 2010 00:54:21 +0000</pubDate>
		<dc:creator>枯藤昏鸦</dc:creator>
				<category><![CDATA[就是不分类]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://ioio.name/?p=1490</guid>
		<description><![CDATA[参考资料 HTML5 Readiness : Visual timeline of HTML5 feature support. When Can I Use&#8230; : Up to date HTML5 feature browser support reference. HTML5 Test : Series of browser tests to evaluate feature support. HTML5 Infographic : A quick overview of scope and support. W3C HTML5 Web Author View : Lightweight version of the W3c [...]]]></description>
			<content:encoded><![CDATA[<p><strong>参考资料</strong></p>
<p><a href="http://html5readiness.com/" target="_balnk">HTML5 Readiness</a>  : Visual timeline of HTML5 feature support.<br />
<a href="http://caniuse.com/" target="_balnk">When Can I Use&#8230; </a>: Up to date HTML5 feature browser support reference.<br />
<a href="http://beta.html5test.com/" target="_balnk">HTML5 Test</a> : Series of browser tests to evaluate feature support.<br />
<a href="http://www.focus.com/images/view/11905/" target="_balnk">HTML5 Infographic</a> : A quick overview of scope and support.<br />
<a href="http://dev.w3.org/html5/spec-author-view/" target="_balnk">W3C HTML5 Web Author View</a> : Lightweight version of the W3c spec, perfect for web developers.<br />
<a href="http://dev.chromium.org/developers/web-platform-status" target="_balnk">Chrome Implementation Status</a> : Follow the engineering effort for cutting edge support from the Chrome team.<br />
<a href="http://diveintohtml5.org/" target="_balnk">Dive into HTML5 by Mark Pilgrim</a> : Learn HTML5 and have a laugh at the same time.<br />
<a href="http://en.wikipedia.org/wiki/Comparison_of_layout_engines_(HTML5)" target="_balnk">HTML5: Comparison of Layout Engines</a> : If the Wikipedia says it then it must be true.<br />
<a href="http://developer.apple.com/safari/" target="_balnk">Safari HTML5 Guides</a> : Excellent WebKit-oriented development documentation.<br />
<a href="https://developer.mozilla.org/en/HTML/HTML5" target="_balnk">Mozilla Development Center HTML5 Reference</a> : Excellent documentation and guides.<br />
<a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/" target="_balnk">WhatWG Web Apps Spec (HTML5 plus the kitchen sink)</a> : Working draft spec of everything under the larger HTML5 umbrella.<br />
<a href="http://kangax.github.com/es5-compat-table/" target="_balnk">ECMAScript 5 table</a> : Detailed table of ES5 support across browsers.<br />
<a href="http://www.quirksmode.org/compatibility.html" target="_balnk">Compatibility Tables</a> : Results of DOM and CSS properties tests in major browsers. </p>
<p>相关工具<br />
<a href="http://www.modernizr.com/" target="_balnk">Modernizr</a>  : Javascript library for feature detection and control fallback cases of HTML5.<br />
<a href="http://code.google.com/p/html5shiv/" target="_balnk">html5 shiv</a> : Javascript patch to make IE support, and print, the new tag elements.<br />
<a href="http://css-tricks.com/examples/ButtonMaker/" target="_balnk">CSS Button Maker</a> : Preview CSS buttons with a fancy interface to play with the parameters.<br />
<a href="http://css3generator.com/" target="_balnk">CSS3 Generator</a> : Preview CSS buttons with a fancy interface to play with the parameters.<br />
<a href="http://www.westciv.com/tools/gradients/index.html" target="_balnk">CSS3 Sandbox</a> : Test and get the code of the fanciest CSS features.<br />
<a href="http://gradients.glrzad.com/" target="_balnk">CSS3 Gradient Generator</a> : Generate CSS code for gradients on the fly.<br />
<a href="http://css3please.com/" target="_balnk">CSS3 Please</a> : Use CSS3 without having to worry about xbrowser differences.<br />
<a href="http://labs.thecssninja.com/font_dragr/" target="_balnk">Font Dragr</a> : Test your fonts using drag and drop.<br />
<a href="http://www.fontsquirrel.com/fontface/generator" target="_balnk">Font Squirrel Generator</a> : Most complete tool to generate code for you font-face support.<br />
<a href="http://code.google.com/speed/tools.html" target="_balnk">Let&#8217;s make the web faster</a> : Complete list of tools related to web performance.</p>
<p>社区<br />
<a href="http://html5watch.tumblr.com/" target="_balnk">HTML5 Watch</a><br />
<a href="http://css3watch.com/" target="_balnk">CSS3 Watch</a><br />
<a href="http://html5doctor.com/" target="_balnk">HTML5 Doctor</a><br />
<a href="http://blog.whatwg.org/" target="_balnk">WhatWG Blog</a><br />
<a href="http://html5demos.com/" target="_balnk">HTML5 Demos</a><br />
<a href="http://ajaxian.com/" target="_balnk">Ajaxian</a><br />
<a href="https://groups.google.com/a/chromium.org/group/chromium-html5/topics" target="_balnk">Chromium HTML5 Discussion Group</a><br />
<a href="http://hacks.mozilla.org/" target="_balnk">Mozilla Hacks</a><br />
<a href="http://developer.apple.com/safaridemos/" target="_balnk">Safari HTML5 Demos</a><br />
<a href="http://ie.microsoft.com/testdrive/" target="_balnk">Test Drive IE9 Demos</a><br />
<a href="http://dev.opera.com/articles/tags/open%20web/" target="_balnk">Open Web &#8211; Opera Developer Community</a><br />
<a href="http://www.chromeexperiments.com/" target="_balnk">Chrome Experiments</a><br />
-EOF-</p>
<hr /><h2>Related posts:</h2><ul><li><a href="http://ioio.name/html5-demo.html" rel="bookmark" title="Permanent Link: HTML5新功能演示">HTML5新功能演示</a></li><li><a href="http://ioio.name/seven-html-related-working-drafts-published.html" rel="bookmark" title="Permanent Link: W3C 推出 7 个 HTML 草案">W3C 推出 7 个 HTML 草案</a></li><li><a href="http://ioio.name/dive-into-html5-cn.html" rel="bookmark" title="Permanent Link: 畅游 HTML5 （DIVE INTO HTML5 中文版）">畅游 HTML5 （DIVE INTO HTML5 中文版）</a></li><li><a href="http://ioio.name/dive-into-html5-archive.html" rel="bookmark" title="Permanent Link: DIVE INTO HTML5离线版下载">DIVE INTO HTML5离线版下载</a></li><li><a href="http://ioio.name/html-css-get-up-guide.html" rel="bookmark" title="Permanent Link: HTML&#038;CSS 入门指南">HTML&#038;CSS 入门指南</a></li></ul><hr /><small>Copyright &copy; 2005~2011 | <a href="http://ioio.name/html5-resources.html" title="Permalink">Permalink</a> | <a href="http://ioio.name/html5-resources.html#comments">0 Comments</a> | <a href="http://closetou.com" title="Close To U">Close To U</a> <br />
<a href="http://feeds.feedburner.com/miss">订阅</a> <a href="https://twitter.com/tearnon">Twitter</a> <a href="http://ioio.name/godaddy">域名优惠码</a> <a href="http://ioio.name/mt">Media Temple空间</a>
<a href="http://mdiatemple.com/" title="Domain Sale! $6.89 .com at GoDaddy">主机/域名优惠码</a>
</small> )</small>]]></content:encoded>
			<wfw:commentRss>http://ioio.name/html5-resources.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML5之自动聚焦域</title>
		<link>http://ioio.name/html5-autofocus.html</link>
		<comments>http://ioio.name/html5-autofocus.html#comments</comments>
		<pubDate>Mon, 21 Jun 2010 14:29:36 +0000</pubDate>
		<dc:creator>枯藤昏鸦</dc:creator>
				<category><![CDATA[就是不分类]]></category>
		<category><![CDATA[HTML5]]></category>

		<guid isPermaLink="false">http://ioio.name/?p=1320</guid>
		<description><![CDATA[在要自动获得焦点的表单域上放置autofocus属性即可，比如： 1 2 3 4 &#60;form&#62; &#60;input name=&#34;q&#34; autofocus&#62; &#60;input type=&#34;submit&#34; value=&#34;Search&#34;&#62; &#60;/form&#62; 如果需要向下兼容一些老式浏览器，让他们也可以获得焦点，下面的代码比较实用： 1 2 3 4 5 6 7 8 9 &#60;form name=&#34;f&#34;&#62; &#60;input id=&#34;q&#34; autofocus&#62; &#60;script&#62; if (!(&#34;autofocus&#34; in document.createElement(&#34;input&#34;))) { document.getElementById(&#34;q&#34;).focus(); } &#60;/script&#62; &#60;input type=&#34;submit&#34; value=&#34;Go&#34;&#62; &#60;/form&#62; -EOF- Related posts:HTML5新功能演示W3C 推出 7 个 HTML 草案畅游 HTML5 （DIVE INTO HTML5 中文版）DIVE INTO [...]]]></description>
			<content:encoded><![CDATA[<p>在要自动获得焦点的表单域上放置autofocus属性即可，比如：</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
</pre></td><td class="code"><pre class="html" style="font-family:monospace;">&lt;form&gt;
  &lt;input name=&quot;q&quot; autofocus&gt;
  &lt;input type=&quot;submit&quot; value=&quot;Search&quot;&gt;
&lt;/form&gt;</pre></td></tr></table></div>

<p>如果需要向下兼容一些老式浏览器，让他们也可以获得焦点，下面的代码比较实用：</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
</pre></td><td class="code"><pre class="html" style="font-family:monospace;">&lt;form name=&quot;f&quot;&gt;
  &lt;input id=&quot;q&quot; autofocus&gt;
  &lt;script&gt;
    if (!(&quot;autofocus&quot; in document.createElement(&quot;input&quot;))) {
      document.getElementById(&quot;q&quot;).focus();
    }
  &lt;/script&gt;
  &lt;input type=&quot;submit&quot; value=&quot;Go&quot;&gt;
&lt;/form&gt;</pre></td></tr></table></div>

<p>-EOF-</p>
<hr /><h2>Related posts:</h2><ul><li><a href="http://ioio.name/html5-demo.html" rel="bookmark" title="Permanent Link: HTML5新功能演示">HTML5新功能演示</a></li><li><a href="http://ioio.name/seven-html-related-working-drafts-published.html" rel="bookmark" title="Permanent Link: W3C 推出 7 个 HTML 草案">W3C 推出 7 个 HTML 草案</a></li><li><a href="http://ioio.name/dive-into-html5-cn.html" rel="bookmark" title="Permanent Link: 畅游 HTML5 （DIVE INTO HTML5 中文版）">畅游 HTML5 （DIVE INTO HTML5 中文版）</a></li><li><a href="http://ioio.name/dive-into-html5-archive.html" rel="bookmark" title="Permanent Link: DIVE INTO HTML5离线版下载">DIVE INTO HTML5离线版下载</a></li><li><a href="http://ioio.name/html-css-get-up-guide.html" rel="bookmark" title="Permanent Link: HTML&#038;CSS 入门指南">HTML&#038;CSS 入门指南</a></li></ul><hr /><small>Copyright &copy; 2005~2011 | <a href="http://ioio.name/html5-autofocus.html" title="Permalink">Permalink</a> | <a href="http://ioio.name/html5-autofocus.html#comments">1 Comments</a> | <a href="http://closetou.com" title="Close To U">Close To U</a> <br />
<a href="http://feeds.feedburner.com/miss">订阅</a> <a href="https://twitter.com/tearnon">Twitter</a> <a href="http://ioio.name/godaddy">域名优惠码</a> <a href="http://ioio.name/mt">Media Temple空间</a>
<a href="http://mdiatemple.com/" title="Domain Sale! $6.89 .com at GoDaddy">主机/域名优惠码</a>
</small> )</small>]]></content:encoded>
			<wfw:commentRss>http://ioio.name/html5-autofocus.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>HTML5之占位符文本</title>
		<link>http://ioio.name/html5-placeholder.html</link>
		<comments>http://ioio.name/html5-placeholder.html#comments</comments>
		<pubDate>Sun, 20 Jun 2010 03:03:55 +0000</pubDate>
		<dc:creator>枯藤昏鸦</dc:creator>
				<category><![CDATA[就是不分类]]></category>
		<category><![CDATA[HTML5]]></category>

		<guid isPermaLink="false">http://ioio.name/?p=1316</guid>
		<description><![CDATA[HTML5中的占位符文本就是平时我们用JS做的鼠标悬停说明（input hint）。使用起来也很简单，完全向下兼容。下面的代码是一个使用示例： &#60;form&#62; &#60;input name=&#34;q&#34; placeholder=&#34;Search Bookmarks and History&#34;&#62; &#60;input type=&#34;submit&#34; value=&#34;Search&#34;&#62; &#60;/form&#62; 给input加上placeholder属性即可。HTML5中该属性值只能填写文本。点击这里查看你的浏览器是否支持占位符文本。 目前支持占位符文本（Placeholder Text）的有Firefox3.7+、Safari4.0+、Chrome4.0+。 -EOF- Related posts:HTML5新功能演示W3C 推出 7 个 HTML 草案畅游 HTML5 （DIVE INTO HTML5 中文版）DIVE INTO HTML5离线版下载HTML&#038;CSS 入门指南Copyright &#169; 2005~2011 &#124; Permalink &#124; 0 Comments &#124; Close To U 订阅 Twitter 域名优惠码 Media Temple空间 主机/域名优惠码 )]]></description>
			<content:encoded><![CDATA[<p>HTML5中的占位符文本就是平时我们用JS做的鼠标悬停说明（input hint）。使用起来也很简单，完全向下兼容。下面的代码是一个使用示例：</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;form&gt;
  &lt;input name=&quot;q&quot; placeholder=&quot;Search Bookmarks and History&quot;&gt;
  &lt;input type=&quot;submit&quot; value=&quot;Search&quot;&gt;
&lt;/form&gt;</pre></div></div>

<p>给input加上placeholder属性即可。HTML5中该属性值只能填写文本。点击这里查看你的浏览器<a href="http://diveintohtml5.com/examples/input-placeholder.html" target="_blank">是否支持占位符文本</a>。<br />
目前支持占位符文本（Placeholder Text）的有Firefox3.7+、Safari4.0+、Chrome4.0+。<br />
-EOF-</p>
<hr /><h2>Related posts:</h2><ul><li><a href="http://ioio.name/html5-demo.html" rel="bookmark" title="Permanent Link: HTML5新功能演示">HTML5新功能演示</a></li><li><a href="http://ioio.name/seven-html-related-working-drafts-published.html" rel="bookmark" title="Permanent Link: W3C 推出 7 个 HTML 草案">W3C 推出 7 个 HTML 草案</a></li><li><a href="http://ioio.name/dive-into-html5-cn.html" rel="bookmark" title="Permanent Link: 畅游 HTML5 （DIVE INTO HTML5 中文版）">畅游 HTML5 （DIVE INTO HTML5 中文版）</a></li><li><a href="http://ioio.name/dive-into-html5-archive.html" rel="bookmark" title="Permanent Link: DIVE INTO HTML5离线版下载">DIVE INTO HTML5离线版下载</a></li><li><a href="http://ioio.name/html-css-get-up-guide.html" rel="bookmark" title="Permanent Link: HTML&#038;CSS 入门指南">HTML&#038;CSS 入门指南</a></li></ul><hr /><small>Copyright &copy; 2005~2011 | <a href="http://ioio.name/html5-placeholder.html" title="Permalink">Permalink</a> | <a href="http://ioio.name/html5-placeholder.html#comments">0 Comments</a> | <a href="http://closetou.com" title="Close To U">Close To U</a> <br />
<a href="http://feeds.feedburner.com/miss">订阅</a> <a href="https://twitter.com/tearnon">Twitter</a> <a href="http://ioio.name/godaddy">域名优惠码</a> <a href="http://ioio.name/mt">Media Temple空间</a>
<a href="http://mdiatemple.com/" title="Domain Sale! $6.89 .com at GoDaddy">主机/域名优惠码</a>
</small> )</small>]]></content:encoded>
			<wfw:commentRss>http://ioio.name/html5-placeholder.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>畅游 HTML5 （DIVE INTO HTML5 中文版）</title>
		<link>http://ioio.name/dive-into-html5-cn.html</link>
		<comments>http://ioio.name/dive-into-html5-cn.html#comments</comments>
		<pubDate>Wed, 16 Jun 2010 03:12:45 +0000</pubDate>
		<dc:creator>枯藤昏鸦</dc:creator>
				<category><![CDATA[就是不分类]]></category>
		<category><![CDATA[HTML5]]></category>

		<guid isPermaLink="false">http://ioio.name/?p=1306</guid>
		<description><![CDATA[从年后开始一直都在说要翻译这本书，的确是在断断续续的翻译，但总是没时间校对，拖了很久。这个端午假期搞好了第零章，先放出来，第一二章已经翻译好等待校对。就像作者一样，翻译这本书每完成一个章节便放出来，整本书预计今年九月翻译完成。由于这是我的第一次翻译，错误难免，还请发现问题的朋友多多指教。 以下是译文存放地址，欢迎评阅： DIVE INTO HTML5 中文版 http://lib.closetou.com/diveintohtml5/ -EOF- Related posts:DIVE INTO HTML5离线版下载HTML&#038;CSS 入门指南HTML5新功能演示W3C 推出 7 个 HTML 草案HTML5相关资源Copyright &#169; 2005~2011 &#124; Permalink &#124; 4 Comments &#124; Close To U 订阅 Twitter 域名优惠码 Media Temple空间 主机/域名优惠码 )]]></description>
			<content:encoded><![CDATA[<p><a href="http://ioio.name/wp-content/uploads/2010/06/dive-into-html5-introduction-cn.png"><img src="http://ioio.name/wp-content/uploads/2010/06/dive-into-html5-introduction-cn-300x222.png" alt="" title="dive-into-html5-introduction-cn" width="300" height="222" class="alignnone size-medium wp-image-1307" /></a><br />
从年后开始一直都在说要翻译这本书，的确是在断断续续的翻译，但总是没时间校对，拖了很久。这个端午假期搞好了第零章，先放出来，第一二章已经翻译好等待校对。就像作者一样，翻译这本书每完成一个章节便放出来，整本书预计今年九月翻译完成。由于这是我的第一次翻译，错误难免，还请发现问题的朋友多多指教。<br />
以下是译文存放地址，欢迎评阅：<br />
<a href="http://lib.closetou.com/diveintohtml5/" target="_blank">DIVE INTO HTML5 中文版 http://lib.closetou.com/diveintohtml5/</a><br />
-EOF-</p>
<hr /><h2>Related posts:</h2><ul><li><a href="http://ioio.name/dive-into-html5-archive.html" rel="bookmark" title="Permanent Link: DIVE INTO HTML5离线版下载">DIVE INTO HTML5离线版下载</a></li><li><a href="http://ioio.name/html-css-get-up-guide.html" rel="bookmark" title="Permanent Link: HTML&#038;CSS 入门指南">HTML&#038;CSS 入门指南</a></li><li><a href="http://ioio.name/html5-demo.html" rel="bookmark" title="Permanent Link: HTML5新功能演示">HTML5新功能演示</a></li><li><a href="http://ioio.name/seven-html-related-working-drafts-published.html" rel="bookmark" title="Permanent Link: W3C 推出 7 个 HTML 草案">W3C 推出 7 个 HTML 草案</a></li><li><a href="http://ioio.name/html5-resources.html" rel="bookmark" title="Permanent Link: HTML5相关资源">HTML5相关资源</a></li></ul><hr /><small>Copyright &copy; 2005~2011 | <a href="http://ioio.name/dive-into-html5-cn.html" title="Permalink">Permalink</a> | <a href="http://ioio.name/dive-into-html5-cn.html#comments">4 Comments</a> | <a href="http://closetou.com" title="Close To U">Close To U</a> <br />
<a href="http://feeds.feedburner.com/miss">订阅</a> <a href="https://twitter.com/tearnon">Twitter</a> <a href="http://ioio.name/godaddy">域名优惠码</a> <a href="http://ioio.name/mt">Media Temple空间</a>
<a href="http://mdiatemple.com/" title="Domain Sale! $6.89 .com at GoDaddy">主机/域名优惠码</a>
</small> )</small>]]></content:encoded>
			<wfw:commentRss>http://ioio.name/dive-into-html5-cn.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>HTML5新功能演示</title>
		<link>http://ioio.name/html5-demo.html</link>
		<comments>http://ioio.name/html5-demo.html#comments</comments>
		<pubDate>Thu, 29 Apr 2010 10:34:29 +0000</pubDate>
		<dc:creator>枯藤昏鸦</dc:creator>
				<category><![CDATA[就是不分类]]></category>
		<category><![CDATA[HTML5]]></category>

		<guid isPermaLink="false">http://ioio.name/?p=1123</guid>
		<description><![CDATA[这是一个HTML5新功能的演示文档，几乎包括HTML5所有激动人心的新功能的简介和DEMO。 IE系列浏览器无法浏览，firefox、opera等浏览器只能使用部分功能，如果想100%演示成功，请使用最新版的“谷歌浏览器（Google Chrome）”，建议使用最新版。 中文版演示文档请看此处：http://ioio.name/html5/html5_zh_CN.html 中文原版：http://directguo.com/html5/ 英文原版：http://apirocks.com/html5/html5.html 英文镜像：http://ioio.name/html5/html5.html -EOF- Related posts:W3C 推出 7 个 HTML 草案畅游 HTML5 （DIVE INTO HTML5 中文版）DIVE INTO HTML5离线版下载HTML&#038;CSS 入门指南App Engine Backends DemoCopyright &#169; 2005~2011 &#124; Permalink &#124; 1 Comments &#124; Close To U 订阅 Twitter 域名优惠码 Media Temple空间 主机/域名优惠码 )]]></description>
			<content:encoded><![CDATA[<p><a href="http://ioio.name/wp-content/uploads/2010/04/intohtml5.gif"><img src="http://ioio.name/wp-content/uploads/2010/04/intohtml5-300x231.gif" alt="" title="intohtml5" width="300" height="231" class="alignnone size-medium wp-image-1124" /></a><br />
这是一个HTML5新功能的演示文档，几乎包括HTML5所有激动人心的新功能的简介和DEMO。<br />
IE系列浏览器无法浏览，firefox、opera等浏览器只能使用部分功能，如果想100%演示成功，请使用最新版的“谷歌浏览器（Google Chrome）”，建议使用最新版。</p>
<p>中文版演示文档请看此处：<a href="http://ioio.name/html5/html5_zh_CN.html" target="_blank">http://ioio.name/html5/html5_zh_CN.html</a><br />
中文原版：<a href="http://directguo.com/html5/" target="_blank">http://directguo.com/html5/</a><br />
英文原版：<a href="http://apirocks.com/html5/html5.html" target="_blank">http://apirocks.com/html5/html5.html</a><br />
英文镜像：<a href="http://ioio.name/html5/html5.html" target="_blank">http://ioio.name/html5/html5.html</a><br />
-EOF-</p>
<hr /><h2>Related posts:</h2><ul><li><a href="http://ioio.name/seven-html-related-working-drafts-published.html" rel="bookmark" title="Permanent Link: W3C 推出 7 个 HTML 草案">W3C 推出 7 个 HTML 草案</a></li><li><a href="http://ioio.name/dive-into-html5-cn.html" rel="bookmark" title="Permanent Link: 畅游 HTML5 （DIVE INTO HTML5 中文版）">畅游 HTML5 （DIVE INTO HTML5 中文版）</a></li><li><a href="http://ioio.name/dive-into-html5-archive.html" rel="bookmark" title="Permanent Link: DIVE INTO HTML5离线版下载">DIVE INTO HTML5离线版下载</a></li><li><a href="http://ioio.name/html-css-get-up-guide.html" rel="bookmark" title="Permanent Link: HTML&#038;CSS 入门指南">HTML&#038;CSS 入门指南</a></li><li><a href="http://ioio.name/app-engine-backends-demo.html" rel="bookmark" title="Permanent Link: App Engine Backends Demo">App Engine Backends Demo</a></li></ul><hr /><small>Copyright &copy; 2005~2011 | <a href="http://ioio.name/html5-demo.html" title="Permalink">Permalink</a> | <a href="http://ioio.name/html5-demo.html#comments">1 Comments</a> | <a href="http://closetou.com" title="Close To U">Close To U</a> <br />
<a href="http://feeds.feedburner.com/miss">订阅</a> <a href="https://twitter.com/tearnon">Twitter</a> <a href="http://ioio.name/godaddy">域名优惠码</a> <a href="http://ioio.name/mt">Media Temple空间</a>
<a href="http://mdiatemple.com/" title="Domain Sale! $6.89 .com at GoDaddy">主机/域名优惠码</a>
</small> )</small>]]></content:encoded>
			<wfw:commentRss>http://ioio.name/html5-demo.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>DIVE INTO HTML5离线版下载</title>
		<link>http://ioio.name/dive-into-html5-archive.html</link>
		<comments>http://ioio.name/dive-into-html5-archive.html#comments</comments>
		<pubDate>Wed, 03 Mar 2010 03:03:43 +0000</pubDate>
		<dc:creator>枯藤昏鸦</dc:creator>
				<category><![CDATA[就是不分类]]></category>
		<category><![CDATA[HTML5]]></category>

		<guid isPermaLink="false">http://ioio.name/?p=935</guid>
		<description><![CDATA[MARK PILGRIM这次给我们带来了DIVE INTO HTML5，虽然这本书还在写作之中，但是我想对HTML5感兴趣的同学已经迫不及待的想要阅读了。与MARK PILGRIM之前所写的DIVE INTO PYTHON一样，这本书同样采用CC协议发布，同时你还可以使用Mercurial从版本库中检索出来的。 1 hg clone http://hg.diveintohtml5.org/ diveintohtml5 如果你机器上没有Mercurial，我这有一份已经打包好的供下载。 -EOF- Related posts:畅游 HTML5 （DIVE INTO HTML5 中文版）W3C 推出 7 个 HTML 草案HTML&#038;CSS 入门指南HTML5新功能演示HTML5相关资源Copyright &#169; 2005~2011 &#124; Permalink &#124; 1 Comments &#124; Close To U 订阅 Twitter 域名优惠码 Media Temple空间 主机/域名优惠码 )]]></description>
			<content:encoded><![CDATA[<p>MARK PILGRIM这次给我们带来了<a href="http://diveintohtml5.org/" target="_blank">DIVE INTO HTML5</a>，虽然这本书还在写作之中，但是我想对HTML5感兴趣的同学已经迫不及待的想要阅读了。与MARK PILGRIM之前所写的DIVE INTO PYTHON一样，这本书同样采用CC协议发布，同时你还可以使用Mercurial从版本库中检索出来的。</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="shell" style="font-family:monospace;">hg clone http://hg.diveintohtml5.org/ diveintohtml5</pre></td></tr></table></div>

<p>如果你机器上没有Mercurial，我这有一份已经打包好的供下载<a class="downloadlink" href="http://ioio.name/downloads/9" title=" downloaded 452 times" >DiveIntoHtml5.tar.gz (452)</a>。<br />
-EOF-</p>
<hr /><h2>Related posts:</h2><ul><li><a href="http://ioio.name/dive-into-html5-cn.html" rel="bookmark" title="Permanent Link: 畅游 HTML5 （DIVE INTO HTML5 中文版）">畅游 HTML5 （DIVE INTO HTML5 中文版）</a></li><li><a href="http://ioio.name/seven-html-related-working-drafts-published.html" rel="bookmark" title="Permanent Link: W3C 推出 7 个 HTML 草案">W3C 推出 7 个 HTML 草案</a></li><li><a href="http://ioio.name/html-css-get-up-guide.html" rel="bookmark" title="Permanent Link: HTML&#038;CSS 入门指南">HTML&#038;CSS 入门指南</a></li><li><a href="http://ioio.name/html5-demo.html" rel="bookmark" title="Permanent Link: HTML5新功能演示">HTML5新功能演示</a></li><li><a href="http://ioio.name/html5-resources.html" rel="bookmark" title="Permanent Link: HTML5相关资源">HTML5相关资源</a></li></ul><hr /><small>Copyright &copy; 2005~2011 | <a href="http://ioio.name/dive-into-html5-archive.html" title="Permalink">Permalink</a> | <a href="http://ioio.name/dive-into-html5-archive.html#comments">1 Comments</a> | <a href="http://closetou.com" title="Close To U">Close To U</a> <br />
<a href="http://feeds.feedburner.com/miss">订阅</a> <a href="https://twitter.com/tearnon">Twitter</a> <a href="http://ioio.name/godaddy">域名优惠码</a> <a href="http://ioio.name/mt">Media Temple空间</a>
<a href="http://mdiatemple.com/" title="Domain Sale! $6.89 .com at GoDaddy">主机/域名优惠码</a>
</small> )</small>]]></content:encoded>
			<wfw:commentRss>http://ioio.name/dive-into-html5-archive.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

