HTML5知识库
最近更新文章
HTML5 Input 类型
原文链接:http://bang.chinabyte.com/thread-416700-1-1.html HTML5 新的 Input 类型HTML5 拥有多个新的表单输入类型。这些新特性提供了更好的输入控制和验证。本章全面介绍这些新的输入类型: email url number range Date pickers (date, month, week, time, datet ...
html5 canvas例子
<!DOCTYPE HTML> <html> <head> <meta http-equiv="content-type" content="text/html;charset=utf-8"/> <title>HTML5</title> <script type="tex ...
html5 兼容ie
<!DOCTYPE html> <!--[if IE]> <meta http-equiv="X-UA-Compatible" content="IE=8" /> <![endif]--> <!--[if IE 7]> <meta http-equiv="X-UA-Compatible ...
javascript和html5
javascript简单总结 如果要往html中的某个元素中添加text内容,obj.innerHtml="" 简单的js验证可以省略html文件中的html,head,title,body标记。 更简单的js验证可以使用javascript:URL伪协议来执行。 javascript程序是用Unicode字符集编写的,Unicode是16位的。 javascript是大小写敏 ...
dive to html5
http://diveintohtml5.org/table-of-contents.html Table of Contents Introduction: Five Things You Should Know About HTML5 1. It’s not one big thing i 2. You don’t need to throw anything away i ...
html5初学者
<!DOCTYPE HTML> <html> <body> <canvas id="arcCanvas" width="200" height="100" style="border:1px solid #c3c3c3;"> Your browser does not ...
html5 之canvas
html5汹涌而来。拿来玩玩。今天学习canvas。 首先上个例子,自己写了一个实现圆角矩形方法。 function drawRoundRect(ctx,x,y,w,h){ var d1 = 1/40*w; //设置 d1 d2的默认长度 为贝塞尔曲线取中间控制点做准备 var d2 = 1/50*w ; ctx.beginPath(); // 第一个节点 ctx.moveTo( ...
html5学习
Designing a blog with html5 http://html5doctor.com/designing-a-blog-with-html5/ 15个 HTML5 教程和参考手册 http://introducinghtml5.com/ http://diveintohtml5.org/ http://diveintohtml5.com/ 中文版 http: ...
html5
当前,video 元素支持三种视频格式: 格式 IE Firefox Opera Chrome Safari Ogg No 3.5+ 10.5+ 5.0+ No MPEG 4 9.0+ No No 5.0+ 3.0+ WebM No 4.0+ 10.6+ 6.0+ No 当前,audio 元素支持三种音频格式: IE 9 Firefox 3.5 Opera ...
html5,HTML5中文教程,HTML5中文手册,HTML5参考手册,html5,html5教程,html5手册,HTML5简介
HTML5参考手册,html5,html5教程,html5手册,HTML5简介,HTML5视频,HTML5音频,HTML5画布,HTML5Web存储.HTML5离线存储,HTML5输入类型,HTML5表单元素,HTML5表单属性,HTML5标签,HTML5属性,HTML5事件 HTML 5 教程 HTML 5 首页 HTML 5 简介 HTML 5 视频 HTML 5 音频 HTML 5 ...
html5
中文入口:http://www.w3school.com.cn/html5/index.asp 英文入口:http://www.w3schools.com/html5/default.asp
HTML5笔记
详细可见本书《HTML5 up and running》,在线阅读官网:http://diveintohtml5.org/ 以下是笔记。 检测浏览器是否支持HTML5的类库:Modernizr http://www.modernizr.com/ HTML5新特性: 1.canvas 可以画图了,IE9以下不支持,但可以用ExplorerCanvas类库模拟 http://code.google. ...