html5画布旋转效果示例_html5教程技巧
程序员文章站
2022-03-20 19:33:22
...
keleyi.htm的代码如下:
html旋转画布
/*
* 功能:画布旋转
*/
(function(){
var canvas=null,
context=null,
angle=0;
function resetCanvas(){
canvas=document.getElementById("jb51");
canvas.width=window.innerWidth;
canvas.height=window.innerHeight;
context=canvas.getContext("2d");
}
function animate(){
context.save();
try{
//清除画布
context.clearRect(0, 0, canvas.width, canvas.height);
//设置原点
context.translate(canvas.width * 0.5, canvas.height * 0.5);
//旋转角度
context.rotate(angle);
//设置填充颜色
context.fillStyle = "#FF0000";
//绘制矩形
context.fillRect(-30, -30, 60, 60);
angle += 0.05 * Math.PI;
}
finally{
context.restore();
}
}
$(window).bind("resize",resetCanvas).bind("reorient",resetCanvas);
$(document).ready(function(){
window.scrollTo(0,1);
resetCanvas();
setInterval(animate,40);
});
})();
复制代码
代码如下:jb51.js的代码如下:
复制代码
代码如下:/*
* 功能:画布旋转
*/
(function(){
var canvas=null,
context=null,
angle=0;
function resetCanvas(){
canvas=document.getElementById("jb51");
canvas.width=window.innerWidth;
canvas.height=window.innerHeight;
context=canvas.getContext("2d");
}
function animate(){
context.save();
try{
//清除画布
context.clearRect(0, 0, canvas.width, canvas.height);
//设置原点
context.translate(canvas.width * 0.5, canvas.height * 0.5);
//旋转角度
context.rotate(angle);
//设置填充颜色
context.fillStyle = "#FF0000";
//绘制矩形
context.fillRect(-30, -30, 60, 60);
angle += 0.05 * Math.PI;
}
finally{
context.restore();
}
}
$(window).bind("resize",resetCanvas).bind("reorient",resetCanvas);
$(document).ready(function(){
window.scrollTo(0,1);
resetCanvas();
setInterval(animate,40);
});
})();
上一篇: Html5 语法与规则简要概述
推荐阅读
-
Html5百叶窗效果的示例代码_html5教程技巧
-
HTML5边玩边学(1)画布实现方法 _html5教程技巧
-
HTML5边玩边学(1)画布实现方法 _html5教程技巧
-
字中字效果的实现【html5实例】_html5教程技巧
-
html5 canvas 使用示例 _html5教程技巧
-
HTML5注册页面示例代码_html5教程技巧
-
利用HTML5绘制点线面组成的3D图形的示例_html5教程技巧
-
Html5游戏开发之乒乓Ping Pong游戏示例(二)_html5教程技巧
-
html5 touch事件实现页面上下滑动效果【附代码】_html5教程技巧
-
HTML5+Canvas+CSS3实现齐天大圣孙悟空腾云驾雾效果_html5教程技巧