
HTML5
fwwdn
普通人
展开
-
浅析HTML5在移动应用开发中的使用
前言HTML5的出现让移动平台的竞争由系统平台转向了浏览器之间:移动端的IE、Chrome、FireFox、Safari,亦或是新出现的浏览器,谁能达到在移动端对HTML5更好的支持,谁就能在以后的移动应用领域占据更多的市场。现在我们怎么装APP有了HTML5以后怎么装APP更灵活、更方便的app使用及安装方式将成为HTML5在移动平台上大放异彩的保障之一。下面列举转载 2012-04-25 20:06:57 · 1249 阅读 · 0 评论 -
HTML5 文件操作API
<!--@page {margin:2cm}pre.cjk {font-family:"DejaVu Sans",monospace}p {margin-bottom:0.21cm}h2 {margin-bottom:0.21cm}h2.ctl {font-family:"Lohit Hindi"}h3 {margin-bottom:0.21cm}原创 2012-12-20 14:31:05 · 15435 阅读 · 3 评论 -
HTML5 IndexedDB
<!--@page {margin:2cm}pre.cjk {font-family:"DejaVu Sans",monospace}p {margin-bottom:0.21cm}h2 {margin-bottom:0.21cm}h2.ctl {font-family:"Lohit Hindi"}code.cjk {font-family:"Dej原创 2012-12-20 14:00:48 · 3122 阅读 · 0 评论 -
Node.js 入门
<!--@page {margin:2cm}p {margin-bottom:0.21cm}h3 {margin-bottom:0.21cm}h3.ctl {font-family:"Lohit Hindi"}pre.cjk {font-family:"DejaVu Sans",monospace}-->Node.js是什么?Node原创 2012-12-28 13:37:15 · 1196 阅读 · 0 评论 -
HTML5 Audio自定义播放控制
Creating custom video controls var video; window.onload = function() { video = document.getElementsByTagName("video")[0]; var btn_play = document.getE原创 2012-12-26 13:33:47 · 9526 阅读 · 0 评论 -
html5页面结构
HTML5页面结构 这里是页头 HTML5页面使用旁注. 导航1 | 导航2 | 导航3 | 导航4 h1 h2 h3原创 2012-12-26 13:28:23 · 7286 阅读 · 0 评论 -
HTML5 Web Workers
什么是 Web Worker?当在 HTML 页面中执行脚本时,页面的状态是不可响应的,直到脚本已完成。web worker 是运行在后台的 JavaScript,独立于其他脚本,不会影响页面的性能。您可以继续做任何愿意做的事情:点击、选取内容等等,而此时 web worker 在后台运行。浏览器支持所有主流浏览器均支持 web worker,除了 Internet原创 2012-12-26 14:12:43 · 964 阅读 · 0 评论 -
HTML5 Video
Browsing the video with a seek bar #video_container { margin: 0; padding: 0; } #time { margin: 0; padding: 5px;原创 2012-12-26 13:36:08 · 1315 阅读 · 0 评论 -
HTML5日期选择
Creating Date and Time Controls HTML5 Forms Creating Date and Time Controls Choose a date from the Date Pi原创 2012-12-26 13:30:27 · 5959 阅读 · 0 评论 -
Attributes and custom properties
Attributes and custom properties本文转自:http://javascript.info/tutorial/attributes-and-custom-propertiesIlya KantorPropertiesAttributesProperties and attribytes synchronizationidhrefv转载 2012-11-02 09:29:07 · 1230 阅读 · 0 评论 -
HTML5 Application Cache
1、应用场景离线访问对基于网络的应用而言越来越重要。虽然所有浏览器都有缓存机制,但它们并不可靠,也不一定总能起到预期的作用。HTML5 使用ApplicationCache 接口解决了由离线带来的部分难题。前提是你需要访问的web页面至少被在线访问过一次。2、使用缓存接口可为您的应用带来以下三个优势:离线浏览 – 用户可在离线时浏览您的完整网站速度 – 缓存资源为本地资源,因此加载原创 2012-10-17 17:59:53 · 16777 阅读 · 1 评论 -
解决ubuntu下Chrome浏览器访问HTML5 File API: Directories and System抛SECURITY_ERR异常问题
必须在命令行启动Chrome,启动时带参数:--allow-file-access-from-files具体步骤:1.切换到root用户:sudo -i2.进入Chrome安装目录:cd ../../opt/google/chrome3.修改文件权限:chmod 777 google-chrome4.返回普通用户:exit5.进入Chrome安装目录:cd ../.原创 2012-07-13 10:29:35 · 2379 阅读 · 0 评论 -
开发者必须知道的HTML5十五大新特性
HTML5想必大家都很熟悉了,因为太多的媒体在讨论这一技术。然而,你能准确地说出HTML5带来了哪些新特性吗?本文总结了HTML5带来的15项你必须知道的新特性。 一起来看下: 1.新的文档…HTML5想必大家都很熟悉了,因为太多的媒体在讨论这一技术。然而,你能准确地说出HTML5带来了哪些新特性吗?本文总结了HTML5带来的15项你必须知道的新特性。一起来看下:1.新的文档类型 (N转载 2012-05-02 19:42:35 · 932 阅读 · 0 评论 -
What does idl attribute mean in the W3C html5 standard document?
The 'IDL' comes from the Web IDL spec:This document defines an interface definition language, Web IDL, that can be used to describe interfaces that are intended to be implemented in web browsers原创 2013-01-29 13:26:34 · 1350 阅读 · 0 评论