摘要: /** * 图片绕边旋转的小动画 */ function initDemo10() { var canvas = document.getElementById("demo10"); if (!canvas) { return; } var context = canvas.getContext("2d"); var img = new... 阅读全文
posted @ 2017-04-11 16:30 就只是小茗 阅读(588) 评论(0) 推荐(0) 编辑
摘要: /** * 剪切图像 */ function initDemo8(){ var canvas = document.getElementById("demo8"); if (!canvas) return; var context = canvas.getContext("2d"); var img = new Image(); img.src = "... 阅读全文
posted @ 2017-04-11 13:36 就只是小茗 阅读(210) 评论(0) 推荐(0) 编辑
摘要: /** * 图片平铺 */ function initDemo7(){ var canvas = document.getElementById("demo7"); if (!canvas) return; var context = canvas.getContext("2d"); var type = [ "no-repeat", // 不... 阅读全文
posted @ 2017-04-11 11:50 就只是小茗 阅读(1901) 评论(0) 推荐(0) 编辑
摘要: /** * 图形绘制阴影 */ function initDemo6() { var canvas = document.getElementById("demo6"); if (!canvas) return; var context = canvas.getContext("2d"); context.fillStyle = "#02c9e5"; ... 阅读全文
posted @ 2017-04-11 11:13 就只是小茗 阅读(1080) 评论(0) 推荐(0) 编辑
摘要: /** * 图形组合 */ function initDemo5() { var canvas = document.getElementById("demo5"); if (!canvas) return; var context = canvas.getContext("2d"); var oprtns = [ "source-atop",... 阅读全文
posted @ 2017-04-11 10:55 就只是小茗 阅读(840) 评论(0) 推荐(0) 编辑
摘要: 1 function GetQueryString(name) { 2 var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)","i"); 3 var r = window.location.search.substr(1).match(reg); 4 if (r!=null) return (r[2]); return nu... 阅读全文
posted @ 2017-04-07 17:00 就只是小茗 阅读(249) 评论(0) 推荐(0) 编辑
摘要: 1、FileReader概述 FileReader 对象允许Web应用程序异步读取存储在用户计算机上的文件(或原始数据缓冲区)的内容,使用 File 或 Blob 对象指定要读取的文件或数据。 其中File对象可以是来自用户在一个<input>元素上选择文件后返回的FileList对象,也可以来自拖 阅读全文
posted @ 2017-03-10 11:14 就只是小茗 阅读(812) 评论(0) 推荐(0) 编辑
摘要: 创建button css3样式 阅读全文
posted @ 2017-03-06 15:03 就只是小茗 阅读(8653) 评论(0) 推荐(0) 编辑
摘要: 1、form属性 表单内的从属元素,可以写在表单外部。可以通过指定元素的form属性来声明元素所属表单。form的属性值为表单的id。 详细学习内容可参看:HTML5新增的form属性简介 2、formaction属性 给所有的提交按钮增加formaction属性,可以通过不同的按钮将表单提交到不同 阅读全文
posted @ 2017-02-28 10:57 就只是小茗 阅读(294) 评论(0) 推荐(0) 编辑
摘要: Html5Test html5Tag hello 总得来说 总得来说的详细叙述 0 100 + = 注释:Internet Explorer 不支持 标签。 ... 阅读全文
posted @ 2017-02-28 09:17 就只是小茗 阅读(404) 评论(0) 推荐(0) 编辑