keleyi.htm のコードは次のとおりです:
jb51.js のコードは次のとおりです:
/*
* 関数: キャンバス回転
*/
(function(){
var Canvas=null,
context=null,
angle =0;
関数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 ("サイズ変更",resetCanvas).bind("reorient",resetCanvas);
$(document).ready(function(){
window.scrollTo(0,1);
replaceCanvas();
setInterval(animate,40 );
});
})();