随笔分类 -  HTML5

摘要:HTML5 Video Player1. INTRODUCTONWhat is HTML5 Video?HTML is the markup language that makes up every page on the web. The newest version, HTML5, includes specifications for a video tag, that is meant to allow website developers to add a video to a page the same way they would add an image. In order f 阅读全文
posted @ 2011-08-18 14:14 ╰☆Everytime I try to flying 阅读(1549) 评论(2) 推荐(0)
摘要:html5 简单 旋转角度原理 时针 1 <!doctype html> 2 <html> 3 <head> 4 <title>html5 简单 旋转角度原理 时针</title> 5 6 <script type="text/javascript"> 7 //==================================== 8 var time = new Date(); 9 var h = time.getHours(); 10 var m = time.getMinutes(); 11 v 阅读全文
posted @ 2011-07-08 19:54 ╰☆Everytime I try to flying 阅读(1022) 评论(0) 推荐(0)
摘要:HTTP协议是什么?简单来说,就是一个基于应用层的通信规范:双方要进行通信,大家都要遵守一个规范,这个规范就是HTTP协议。HTTP协议能做什么?很多人首先一定会想到:浏览网页。没错,浏览网页是HTTP的主要应用,但是这并不代表HTTP就只能应用于网页的浏览。HTTP是一种协议,只要通信的双方都遵守这个协议,HTTP就能有用武之地。比如咱们常用的QQ,迅雷这些软件,都会使用HTTP协议(还包括其他的协议)。HTTP协议如何工作?大家都知道一般的通信流程:首先客户端发送一个请求(request)给服务器,服务器在接收到这个请求后将生成一个响应(response)返回给客户端。在这个通信的过程中H 阅读全文
posted @ 2011-05-12 18:07 ╰☆Everytime I try to flying 阅读(268) 评论(0) 推荐(0)