主頁(yè) > 知識(shí)庫(kù) > html5畫(huà)布旋轉(zhuǎn)效果示例

html5畫(huà)布旋轉(zhuǎn)效果示例

熱門(mén)標(biāo)簽:小朱地圖標(biāo)注 地圖標(biāo)注柱狀圖 400開(kāi)頭的電話(huà)好申請(qǐng)不 百度地圖標(biāo)注為什么總是封號(hào) 咸陽(yáng)穩(wěn)定外呼系統(tǒng)軟件 怎么做百度地圖標(biāo)注 臨海地圖標(biāo)注app 四川移動(dòng)電銷(xiāo)外呼客戶(hù)管理系統(tǒng) 智能芯電話(huà)機(jī)器人

keleyi.htm的代碼如下:

復(fù)制代碼
代碼如下:

<!DOCTYPE HTML>
<html>
<head>
<title>html旋轉(zhuǎn)畫(huà)布</title>
<script type="text/javascript" src="/jquery-1.10.2.min.js"></script>
<script type="text/javascript" src="jb51.js"></script>
</head>
<body>
<canvas id="jb51"></canvas>
</body>
</html>

jb51.js的代碼如下:

復(fù)制代碼
代碼如下:

/*
* 功能:畫(huà)布旋轉(zhuǎn)
*/
(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{
//清除畫(huà)布
context.clearRect(0, 0, canvas.width, canvas.height);
//設(shè)置原點(diǎn)
context.translate(canvas.width * 0.5, canvas.height * 0.5);
//旋轉(zhuǎn)角度
context.rotate(angle);
//設(shè)置填充顏色
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);
});
})();

標(biāo)簽:南平 平頂山 公主嶺 山南 黃石 黃石 陜西

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《html5畫(huà)布旋轉(zhuǎn)效果示例》,本文關(guān)鍵詞  html5,畫(huà)布,旋轉(zhuǎn),效果,示例,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《html5畫(huà)布旋轉(zhuǎn)效果示例》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于html5畫(huà)布旋轉(zhuǎn)效果示例的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章