伴随着 chrome, firefox 3.5, opera, 和 safar对html5的支持,html5已经像一列暴走的列车接近我们了。这里是些好的建议帮助你准备过渡到html5.
开始准备html5的第一件事情就是先看下别人是使用它的。html 5 gallery 演示了一些使用html5的网站。
你可以先看看这些网站的文章,here(这里html5 预览) 和 elsewhere(和其他地方html5doctor), 甚至 read the specification(读取html5详细说明)
但是上面当中文章没有一个能像使用新的元素那样让您领会掌握html5.
通过实际做,你可以知道什么可以工作,什么不可以工作。比如我在firefox3.5版本中发现类似article 和section的标签默认显示方式是display:inline模式,所以不得不强制设置它们为display:block模式才能像期望的效果显示。
下面是整理的一些 html 5, xhtml 1.0/1.1, 以及xhtml 5之间的一些关系或者结论吧。
我们所熟知和了解的html 4.0,它是基于sgml(standard generalized markup language)规则手册的。
在sgml规则手册中,元素的书写并不区分大小写,你可以有选择的闭合标签,标签属性的书写也可以不用引号标记。
xhtml 1.0 和1.1是基于xml的,在xml规则手册中,所有的标签和属性必须用小写,标签必须闭合,而且所有的属性必须用引号括起来。
html5定义的标记语言不是基于上面任何一种规则手册,但是html5可以被写成要么是html形式,要么是xhtml形式。
如果你用html形式书写标签的话,你就可以不用区分大小写,而且标签可以不用闭合,属性不用引号,当中可以穿插一些xml的标签。比如:<img /><br />等。
但是如果你用xhtml书写标签的话就必须严格遵照规格手册。
以后xml毕竟是个发展方向,所以我推荐大家使用xhtml5.
使用xhtml5的时候一定要记住在声明mime 类型的时候,一定要用application/xhtml+xml 或者 text/xml。如果有语法错误会提示滴哈。
html5扩展了input元素,给它增加了一些新的属性,比如min max (主要针对数字类型),html5还提供了一些新的type类型(比如url, email, date, 和time)
如果这些属性不能满足你的需求,html5还提供给type为text的input一个pattern的属性,pattern的值就是和ecmascript中的正则表达一样。
这写表单属性已经在safari and chrome, 和 opera中支持。如果你的浏览器不支持这些属性。你可以下载google’s web forms 2 提供。
例子:
<p>
enter a date: <input type="date" name="day"
required="required"
title="use format yyyy-mm-dd" />
</p>
<p>
enter a us or canadian postal code:
<input type="text" name="postcode"
required="required"
pattern="([0-9]{5}(-[0-9]{4})?)|([0-9][a-z][0-9]/s+[a-z][0-9][a-z])"
title="us: 99999-1234; canadian: 0a1 b2c" />
</p>
这是一个复杂的svg文件。这里还有个简单地 下面是个例子:
<svg xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
viewbox="0 0 200 100"
width="200px" height="100px">
<circle cx="50" cy="50" r="30"
style="stroke:none; fill:#ff0000;"/>
<g transform="translate(100, 20) scale(1.65)">
<polygon points="36 25, 25 36, 11 36, 0 25,
0 11, 11 0, 25 0, 36 11"
style="stroke:none; fill:#0000ff;" />
</g>
<rect x="60" y="20" height="60" width="60"
style="stroke:none; fill:#00ff00;
fill-opacity: 0.5;" />
</svg>
svg可以用js动态更改。html5提供了更好的解决方案。
空白画布的支持
html5令人兴奋的特性之一就是支持空白画布。这一特性firefox, safari, opera, 和 chrome
都支持。但是ie不支持。你可以用js绘制你需要的画布。
示例代码:
function drawsimplecanvas() {
var canvas =
document.getelementbyid("simplecanvas");
if (canvas.getcontext) {
var ctx = canvas.getcontext("2d");
ctx.beginpath(); // the circle
ctx.fillstyle = "#ff0000";
ctx.arc(50, 50, 30, 0, 2*math.pi, true);
ctx.closepath();
ctx.fill();
ctx.save();
// move and resize the octagon
ctx.translate(100, 20);
ctx.scale(1.65, 1.65);
ctx.fillstyle = "#0000ff";
ctx.beginpath();
ctx.moveto(36, 25); ctx.lineto(25, 36);
ctx.lineto(11, 36); ctx.lineto(0, 25);
ctx.lineto(0, 11); ctx.lineto(11, 0);
ctx.lineto(25, 0); ctx.lineto(36, 11);
ctx.closepath();
ctx.fill();
// restore graphics as they
// were before move and resize
ctx.restore();
ctx.fillstyle = "#00ff00";
ctx.globalalpha = 0.5;
ctx.beginpath();
ctx.rect(60, 20, 60, 60);
ctx.closepath();
ctx.fill();
}
}
更多关于canval可以看这里canvas tutorial
不要等了赶紧验证下html5在表单和canvas等的新特性吧
新闻热点
疑难解答