欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

HTML5 CSS3新的WEB标准和浏览器支持

程序员文章站 2023-11-29 15:08:16
由于是源自笔记,对每个条目我只会列出称呼和语法特征,暂时没时间写详细的解释和可执行的示例,但是会给出相关的文档地址,除了列出已经支持该特性的浏览器,也会为不支持的浏览器提... 09-07-16...
由于是源自笔记,对每个条目我只会列出称呼和语法特征,暂时没时间写详细的解释和可执行的示例,但是会给出相关的文档地址,除了列出已经支持该特性的浏览器,也会为不支持的浏览器提供替代/过渡的实现。好罢这篇本来是我私下做的笔记,我特别喜欢在evernote上做备忘的笔记,虽然上次看到漏屋老师的文章里说我现在的年龄才刚刚进入记忆力的巅峰期……但是我的自信心仍然屡受打击!比如跟别人讨论the dark knight里小丑在医院对检察官说了什么让他变成双面人,我一句对白都想不起来,还有big bang theory s2里penny玩age of conan时的人物名字是”queen penelope”,我看的时候印象很深,一个月后就连奥德赛都想不起来了。留份笔记总觉得心里踏实些……啊又跑题了

本文整理了一些最重要(或者说人气比较高罢)的新标准,虽然它们多数还只是w3c的草案,离recommendation级别还早,却已经成为新一轮浏览器大战中备受追捧的明星,开发者社区里也涌现出大量相关的demo和api封装,有些已经进入生产环境(比如google在iphone上实现的gmail离线应用),其实我觉得如今的web领域里,从厂商私有技术转换成委员会标准再转换成通用技术产生杀手级应用的周期已经显著的加速了,是因为现在web application的需求太高了么…… update:刚才在solidot发软文的时候我突然想明白怎么表述这个问题:其实现在很多浏览器厂商同时也是基于浏览器的应用开发者和web标准的制定者,就好像修筑舞台的工程师同时也是舞台上的演员和舞蹈动作的导演一样,所以google, mozilla, apple们都在不遗余力的实现那些有利于开发web应用的技术标准,即时它们还是w3c working draft,相比之下ie team就比较缺乏动力,果然计划经济缺乏活力亚xd……

由于是源自笔记,对每个条目我只会列出称呼和语法特征,暂时没时间写详细的解释和可执行的示例,但是会给出相关的文档地址,除了列出已经支持该特性的浏览器,也会为不支持的浏览器提供替代/过渡的实现。

===================废话结束的分割线=======================

css3 media queries

对整个外链css文件和部分css代码使用的媒体类型侦测,人气高的原因显然是因为移动设备……

  1. <link media=“all and (orientation:portrait)” src="screen.css" type="text/css">
  1. @media all and (min-color: 4) { ... }

w3c标准:http://www.w3.org/tr/css3-mediaqueries/
mdc文档:https://developer.mozilla.org/en/css/media_queries
opera文档:http://www.opera.com/docs/specs/css/

支持:firefox 3.5+, safari 3+, opera 7+

css3 2d transforms

css变形,有人用这个实现伪3d效果以及旋转效果的jquery插件

  1. -moz-transform: rotate(-45deg) skew(15deg, 15deg);
  1. sprite.style['-webkit-transform'] = 'rotate(' + v + 'rad)';

w3c标准:http://www.w3.org/tr/css3-2d-transforms/
mdc文档:https://developer.mozilla.org/en/css/css_transform_functions
webkit博客的介绍: http://webkit.org/blog/130/css-transforms/

支持:firefox 3.5+, safari 3.1+
替代/过渡:ie5.5+ matrix filter http://msdn.microsoft.com/en-us/library/ms533014(vs.85).aspx

css3 transitions and css animations

备受期待的css动画,webkit团队提出的草案,transition实现简单的属性渐变,animation定义更复杂的动画效果

  1. transition-property: width;
  2. transition-duration: 1s;
  3.  
  4. animation-name: 'diagonal-slide';
  5. animation-duration: 5s;
  6. animation-iteration-count: 10;
  7. @keyframes 'diagonal-slide' {}

w3c标准:http://www.w3.org/tr/css3-transitions/
w3c标准:http://www.w3.org/tr/css3-animations/
webkit博客的介绍:http://webkit.org/blog/138/css-animation/
约翰同学的介绍:http://ejohn.org/blog/css-animations-and-javascript/

支持:safari 3.1+

css3 downloadable fonts

能在网页里嵌入任意字体是设计师的梦想……不过这里支持的也仅限truetype和opentype

  1. @font-face {}

w3c标准:http://www.w3.org/tr/css3-fonts/#font-resources
msdn文档:http://msdn.microsoft.com/en-us/library/ms530303(vs.85).aspx
mdc文档:https://developer.mozilla.org/en/css/@font-face

支持:firefox 3.5+, safari 3.1+, opera 10.0+, ie4.0+

附赠:其他css3 property的兼容性

ppk同学维护的文档: http://www.quirksmode.org/css/contents.html
css3.info维护的文档:http://www.css3.info/modules/selector-compat/
一个测试页面:http://westciv.com/iphonetests/

html5 dom storage

简洁的持久存储,键值对的形式

  1. window.localstorage
  2. window.sessionstorage //可跨域,标签页关掉就清空

w3c标准:http://www.w3.org/tr/webstorage/
ppk同学维护的兼容性列表:http://www.quirksmode.org/dom/html5.html#localstorage
mdc文档:https://developer.mozilla.org/en/dom/storage
msdn文档:http://msdn.microsoft.com/en-us/library/cc197062(vs.85).aspx

支持:firefox 3.5+, safari 4.0+, ie 8.0+

html5 offline application cache

用一个manifest文件缓存静态资源(图片,css, js之类)在离线状态下使用,不是结构化数据

  1. <html manifest="foo.manifest">
  1. cache manifest
  2. index.html
  3. style/default.css
  4. images/logo.png

w3c标准:http://www.w3.org/tr/offline-webapps/#offline
mdc文档:https://developer.mozilla.org/en/offline_resources_in_firefox

支持:firefox 3.5+

html5 database storage

本地数据库,支持sql,最早是google gears实现,现在的w3c草案的编辑也是google的工程师……但奇怪的是,gears的api跟现在的草案不兼容,chrome甚至为了保留捆绑的gears的数据库api而删除了webkit实现的html5 api……而google在iphone上实现gmail离线功能的时候又采用webkit的api……真纠结……

  1. var db = window.opendatabase("notes", "", "the example notes app!", 1048576);
  2. db.transaction(function(tx) {
  3. tx.executesql(select * from notes’, [], function(tx, rs) {});
  4. });

w3c标准:http://www.w3.org/tr/offline-webapps/#sql
webkit博客的介绍:http://webkit.org/blog/126/webkit-does-html5-client-side-database-storage/
iphone的文档:http://developer.apple.com/documentation/iphone/conceptual/safarijsdatabaseguide/usingthejavascriptdatabase/usingthejavascriptdatabase.html#//apple_ref/doc/uid/tp40007256-ch3-sw1

支持:safari 3.1+
替代/过渡:gears http://code.google.com/p/gears/wiki/database2api

html5 web workers

多线程,在后台执行复杂运算,不能操作dom,线程之间通过消息事件通信

  1. var myworker = new worker('my_worker.js');
  2. myworker.onmessage = function(event) { event.data };
  3. myworker.postmessage(str);

w3c标准:http://www.w3.org/tr/workers/
mdc文档:https://developer.mozilla.org/en/using_web_workers

支持:firefox 3.5+
替代/过渡:gears http://code.google.com/p/gears/wiki/html5workerproposal

html5 geolocation

地理api

  1. window.navigator.geolocation

w3c标准:http://www.w3.org/tr/geolocation-api/
mdc文档:https://developer.mozilla.org/en/using_geolocation

支持:firefox 3.5+
替代/过渡:gears http://code.google.com/p/gears/wiki/geolocationapi

html5 drag and drop

原生拖拽事件

  1. ondragstart
  2. ondrag
  3. ondragend
  4. //拖拽过程中
  5. ondragenter
  6. ondragover
  7. ondragleave
  8. ondrop

w3c标准:http://www.w3.org/tr/html5/editing.html#dnd
mdc文档:https://developer.mozilla.org/en/dragdrop/drag_and_drop
apple文档:http://developer.apple.com/documentation/appleapplications/conceptual/safarijsprogtopics/tasks/draganddrop.html#//apple_ref/doc/uid/30001233

支持:firefox 3.5+, safari 2.0+, chrome 1.0+, ie 5.0+

html5 audio and video

用html标签来嵌入视频音频的好处并非是“开源格式”,而是“开放性”,让多媒体可以与其他页面元素交互,或者用页面技术去跟视频“mashup”,这种随意组合和交互的能力是web技术兴盛的基石,也是像flash这类封闭ria容器最大的缺点。

  1. <video controls>
  2. <source src=“zombie.oggtype=“video/ogg/>
  3. <source src=“zombie.mp4type=“video/mp4/>
  4. </video>

mdc文档:https://developer.mozilla.org/en/using_audio_and_video_in_firefox
webkit博客的介绍:http://webkit.org/blog/140/html5-media-support/

支持:firefox 3.5+, safari 3.0+, chrome 3.0+
替代/过渡:用video标签嵌套embed http://hacks.mozilla.org/2009/06/html5-video-fallbacks-markup/

html5 canvas

apple发明,最早应用于dashboard,目前主流的js图像技术,mozilla已经在实现opengl es标准的canvas 3d了,另外据说ie team为支持canvas做了大量工作……实际上canvas api相当底层,特别是交互方面,不如svg直观,所以出现了很多封装它的库

  1. var ctx = $('#canvas')[0].getcontext("2d");
  2. ctx.fillstyle = "#00a308";
  3. ctx.beginpath();
  4. ctx.arc(220, 220, 50, 0, math.pi*2, true);
  5. ctx.closepath();
  6. ctx.fill();

mdc文档:https://developer.mozilla.org/en/canvas_tutorial

支持:firefox 1.5+, safari 2.0+, chrome 1.0+, opera 9.0+
替代/过渡:excanvas.js http://code.google.com/p/explorercanvas/

svg

w3c标准:http://www.w3.org/tr/svg12/
ibm dw教程:http://www.ibm.com/developerworks/cn/views/xml/tutorials.jsp?cv_doc_id=84896

支持:firefox 1.5+, safari 3.0+, chrome 1.0+, opera 9.0+
替代/过渡:raphael.js http://raphaeljs.com/

xmlhttprequest 2

主要是增加跨域能力以及请求过程中的事件

w3c标准:http://www.w3.org/tr/xmlhttprequest2/
mdc文档:https://developer.mozilla.org/en/using_xmlhttprequest#monitoring_progress
xdomainrequest (xdr)
msdn文档:http://msdn.microsoft.com/en-us/library/cc288060(vs.85).aspx

支持:firefox 3.5+(实现了部分), ie 8.0+(实现了部分)

access control

千呼万唤的跨域访问控制,目前firefox3.5和ie8有一些不同,ie8搞的xdr和xdm我也不知道是不是准备提交给w3c标准化的东西……

  1. access-control-allow-origin: http://foo.example

w3c标准:http://www.w3.org/tr/cors/
mdc文档:https://developer.mozilla.org/en/http_access_control
cross-document messaging (xdm)
msdn文档:http://msdn.microsoft.com/en-us/library/cc197057(vs.85).aspx

支持:firefox 3.5+, ie8.0+

e4x (ecma-357)

firefox和actionscript3早就实现了的东西……不过其实现在json这么流行,有没有e4x好像都无所谓了~(瞎说的,其实在js代码里直接写dom对象而不是html字符串,会方便很多)

mdc文档:https://developer.mozilla.org/en/e4x

支持:firefox 1.5+

ecmascript 5 native json

原生的json支持,速度和安全性都比eval强一百倍亚一百倍,另外要注意douglas crockford的json2.js是一个用js实现的js解释器,所以安全性更好

  1. json.parse( text, translate )
  2. json.stringify( obj, translate )
  3. string.prototype.tojson
  4. boolean.prototype.tojson
  5. number.prototype.tojson
  6. date.prototype.tojson

mdc文档:http://blog.mozilla.com/webdev/2009/02/12/native-json-in-firefox-31/
msdn文档:http://blogs.msdn.com/ie/archive/2008/09/10/native-json-in-ie8.aspx

支持:firefox 3.5+, ie8+
替代/过渡:json2.js http://www.json.org/json2.js

ecmascript 5 array extras

js1.6里实现的数组方法,主要是foreach, map, fliter这几个函数式编程里非常重要的方法,还有反向查询

  1. array.prototype.indexof( str )
  2. array.prototype.lastindexof( str )
  3. array.prototype.every( fn )
  4. array.prototype.some( fn )
  5. array.prototype.filter( fn )
  6. array.prototype.foreach( fn )
  7. array.prototype.map( fn )

mdc文档:https://developer.mozilla.org/en/new_in_javascript_1.6#array_extras

支持:firefox2.0+, safari 3.0+, google chrome 1.0+, opera 9.5+
替代/过渡:都可以通过扩展array.prototype来模拟

ecmascript 5 isarray()

区分数组和对象

  1. array.isarray([]); // true

支持:无
替代/过渡:array.isarray = function(a){ return object.prototype.tostring.call(a) === “[object array]”;};

ecmascript 5 object

用google i/o演讲里的话来说:更鲁棒(robust)的对象系统

  1. object.getprototypeof( obj )

约翰同学的讲解:http://ejohn.org/blog/objectgetprototypeof/

支持:firefox3.5
替代/过渡:object.__proto__ 或 object.constructor.prototype

  1. object.create( proto, props ) //克隆或继承对象
  2.  
  3. object.keys( obj ) //数据结构的映射
  4. object.getownpropertynames( obj )
  5.  
  6. object.preventextensions( obj ) //不能添加新属性
  7. object.isextensible( obj )
  8.  
  9. object.seal( obj ) //不能删除和修改属性的配置,不能添加新属性
  10. object.issealed( obj )
  11.  
  12. object.freeze( obj ) //不能删除和修改属性的配置,不能添加新属性,不能写属性
  13. object.isfrozen( obj )

约翰同学的讲解:http://ejohn.org/blog/ecmascript-5-objects-and-properties/

支持:无
替代/过渡:object.create和object.keys可以自己实现

ecmascript 5 property descriptor

对象属性的访问控制

  1. object.getownpropertydescriptor( obj, prop )
  2. object.defineproperty( obj, prop, desc )
  3. object.defineproperties( obj, props ) 
  4. desc = {
  5.      value: true,
  6.      writable: false, //修改
  7.      enumerable: true, //for in
  8.      configurable: true, //删除和修改属性
  9.      get: function(){ return name; },
  10.      set: function(value){ name = value; }
  11. }

约翰同学的讲解:http://ejohn.org/blog/ecmascript-5-objects-and-properties/

支持:无
替代/过渡:object.defineproperties其实相当于jquery.extend,用来实现mixin

ecmascript 5 getters and setters

python和ruby里都有的属性访问方法

  1. obj = { 
  2.    get innerhtml() { return …; },
  3.    set innerhtml(newhtml) {} 
  4. };

mdc文档:https://developer.mozilla.org/en/core_javascript_1.5_guide/creating_new_objects/defining_getters_and_setters

支持:firefox 2.0+, safari 3.0+, google chrome 1.0+, opera 9.5+
替代/过渡:

非标准,firefox1.5里的旧方法

  1. htmlelement.prototype.__definegetter__("innerhtml", function () {});
  2. htmlelement.prototype.__definesetter__("innerhtml", function (val) {});

支持:firefox 2.0+, safari 3.0+, google chrome 1.0+, opera 9.5+

标准

  1. object.defineproperty(document.body, "innerhtml", { get : function () {} });

msdn文档:http://msdn.microsoft.com/en-us/library/dd229916(vs.85).aspx

支持:ie8+ (只能对dom使用)

ecmascript 5 strict mode

es5的严格模式,删除了旧版本中容易引起问题的元素,并且会显式的报错,方便调试

  1. "use strict"; //以下情况下抛出异常
  2. //对未定义的变量赋值
  3. //操作被设置为不可写,不可配置或不可扩充的属性
  4. //删除变量,函数,参数
  5. //在对象直接量里重复定义属性
  6. //eval做关键字,在eval的字符串里定义变量
  7. //覆写arguments
  8. //使用arguments.caller和arguments.callee(匿名函数必须具名才能引用自己)
  9. //(function(){ ... }).call( null ); // exception
  10. //使用with

约翰同学的讲解:http://ejohn.org/blog/ecmascript-5-strict-mode-json-and-more/

支持:无
替代/过渡:……从现在开始养成严谨的编程习惯

ecmascript 5 其他新特性

传递函数的引用时,绑定this

  1. function.prototype.bind(thisarg, arg1, arg2....) /

支持:无
替代/过渡:prototype http://www.prototypejs.org/api/function/bind

iso-formatted dates

  1. date.prototype.toisostring() // prints 2009-05-21t16:06:05.000tz

支持:无
替代/过渡:datejs http://code.google.com/p/datejs/

  1. string.prototype.trim()

支持:firefox3.5
替代/过渡:各种正则实现 http://blog.stevenlevithan.com/archives/faster-trim-javascript


===================废话又开始的分割线=======================

其实我把这个东西发出来是希望能促进创新的氛围,让更多人认识到很多新技术已经进入到“实用”阶段。

如果只是想做个实验性的webgame,或是只能用于特定平台的应用(比如iphone,greasemonkey),firefox3.5+webkit的支持就已经足够罢。

如果不能无视主流平台,有很多技术能让你gracefully degrade(优雅的退化)或者选取不同的方法实现兼容的接口。

如果你等不及ie x在若干年后实现xx,希望提前享受福利,有些技术的设计原则就是让你能在没有native支持的情况下可以自己实现一模一样的功能或语法糖(syntactic sugar),比如es5对象的继承和访问控制,从es4/actionscript3时期那些老土的关键词(class extands private static)改成了object.create(p, attrs).defineproperty(o, n, attrs).defineproperties(o, attrs).freeze().getownpropertynames().map(fn),不会只是为了酷炫罢……

很多人都喜欢抱怨“我这辈子都没机会用html5”,但是只要把视线从自己脚下那巴掌大块地移开看看别处,会发现世界其实一直都在改变喔xd