好湿?好紧?好多水好爽自慰,久久久噜久噜久久综合,成人做爰A片免费看黄冈,机机对机机30分钟无遮挡

主頁 > 知識庫 > HTML5 Canvas實現平移/放縮/旋轉deom示例(附截圖)

HTML5 Canvas實現平移/放縮/旋轉deom示例(附截圖)

熱門標簽:400開頭的電話好申請不 智能芯電話機器人 臨海地圖標注app 怎么做百度地圖標注 百度地圖標注為什么總是封號 咸陽穩定外呼系統軟件 地圖標注柱狀圖 四川移動電銷外呼客戶管理系統 小朱地圖標注
HTML5 Canvas中提供了實現圖形平移,旋轉,放縮的API。
平移(translate)
平移坐標translate(x, y)意思是把(0,0)坐標平移到(x, y),原來的(0,0)坐標則變成(-x, -y)
圖示如下:
 
任何原來的坐標點p(ox, oy)在translate之后的坐標點為p(ox-x, oy-y),其中點(x, y)為平移
點坐標translate(x, y)。
代碼演示:

復制代碼
代碼如下:

// translate is move the startpoint to centera and back to top left corner
function renderText(width, height, context) {
context.translate(width/ 2, height / 2); // 中心點坐標為(0, 0)
context.font="18px Arial";
context.fillStyle="blue";
context.fillText("Please Press <Esc> to Exit Game",5,50);
context.translate(-width/2, -height/2); // 平移恢復(0,0)坐標為左上角
context.fillText("I'm Back to Top",5,50);
}

放縮(Scale)
Scale(a, b)意思是將對象沿著XY軸分別放縮至a*x, b*y大小。效果如圖示:
 

復制代碼
代碼如下:

// translation the rectangle.
function drawPath(context) {
context.translate(200,200);
context.scale(2,2);// Scale twice size of original shape
context.strokeStyle= "green";
context.beginPath();
context.moveTo(0,40);
context.lineTo(80,40);
context.lineTo(40,80);
context.closePath();
context.stroke();
}

旋轉(rotate)
旋轉角度rotate(Math.PI/8)
 
旋轉前的坐標p(x, y)在對應的旋轉后的坐標P(rx, ry)為
Rx = x * cos(-angle) - y * sin(-angle);
Ry = y * cos(-angle) + x * sin(-angle);
旋轉90度可以簡化為:
Rx = y;
Ry = -x;
Canvas中旋轉默認的方向為順時針方向。演示代碼如下:

復制代碼
代碼如下:

// new point.x = x * cos(-angle) -y * sin(-angle),
// new point.y = y * cos(-angle) +x * sin(-angle)
function renderRotateText(context) {
context.font="24px Arial";
context.fillStyle="red";
context.fillText("i'm here!!!",5,50);
// rotate -90 degreee
// context.rotate(-Math.PI/2);
// context.fillStyle="blue";
// context.fillText("i'm here!!!", -400,30);
// rotate 90 degreee
context.rotate(Math.PI/2);
context.fillStyle="blue";
context.fillText("i'm here!!!",350,-420);
console.log(Math.sin(Math.PI/2));
// rotae 90 degree and draw 10 lines
context.fillStyle="green";
for(var i=0; i<4; i++) {
var x = (i+1)*20;
var y = (i+1)*60;
var newX = y;
var newY = -x;
context.fillRect(newX,newY, 200, 6);
}
}

通常做法是旋轉與平移一起使用,先將坐標(0,0)平移到中心位置
translate (width/2, height/2)然后再使用rotate(Math.PI/2)完成旋轉
代碼示例如下:

復制代碼
代碼如下:

function saveAndRestoreContext(context) {
context.save();
context.translate(200,200);
context.rotate(Math.PI/2);
context.fillStyle="black";
context.fillText("2D Context Rotate And Translate", 10, 10);
context.restore();
context.fillText("2D Context Rotate And Translate", 10, 10);
}

全部JavaScript代碼:

復制代碼
代碼如下:

var tempContext = null; // global variable 2d context
window.onload = function() {
var canvas = document.getElementById("target");
canvas.width = 450;
canvas.height = 450;
if (!canvas.getContext) {
console.log("Canvas not supported. Please install a HTML5 compatible browser.");
return;
}
// get 2D context of canvas and draw image
tempContext = canvas.getContext("2d");
// renderText(canvas.width, canvas.height, tempContext);
saveAndRestoreContext(tempContext);
// drawPath(tempContext);
}
// translate is move the start point to centera and back to top left corner
function renderText(width, height, context) {
context.translate(width / 2, height / 2);
context.font="18px Arial";
context.fillStyle="blue";
context.fillText("Please Press <Esc> to Exit Game",5,50);
context.translate(-width / 2, -height / 2);
context.fillText("I'm Back to Top",5,50);
}
// translation the rectangle.
function drawPath(context) {
context.translate(200, 200);
context.scale(2,2); // Scale twice size of original shape
context.strokeStyle = "green";
context.beginPath();
context.moveTo(0, 40);
context.lineTo(80, 40);
context.lineTo(40, 80);
context.closePath();
context.stroke();
}
// new point.x = x * cos(-angle) - y * sin(-angle),
// new point.y = y * cos(-angle) + x * sin(-angle)
function renderRotateText(context) {
context.font="24px Arial";
context.fillStyle="red";
context.fillText("i'm here!!!",5,50);
// rotate -90 degreee
// context.rotate(-Math.PI/2);
// context.fillStyle="blue";
// context.fillText("i'm here!!!", -400,30);
// rotate 90 degreee
context.rotate(Math.PI/2);
context.fillStyle="blue";
context.fillText("i'm here!!!", 350,-420);
console.log(Math.sin(Math.PI/2));
// rotae 90 degree and draw 10 lines
context.fillStyle="green";
for(var i=0; i<4; i++) {
var x = (i+1)*20;
var y = (i+1)*60;
var newX = y;
var newY = -x;
context.fillRect(newX, newY, 200, 6);
}
}
function saveAndRestoreContext(context) {
context.save();
context.translate(200,200);
context.rotate(Math.PI/2);
context.fillStyle="black";
context.fillText("2D Context Rotate And Translate", 10, 10);
context.restore();
context.fillText("2D Context Rotate And Translate", 10, 10);
}

標簽:平頂山 陜西 平涼 南平 公主嶺 黃石 黃石 山南

巨人網絡通訊聲明:本文標題《HTML5 Canvas實現平移/放縮/旋轉deom示例(附截圖)》,本文關鍵詞  HTML5,Canvas,實現,平移,放縮,;如發現本文內容存在版權問題,煩請提供相關信息告之我們,我們將及時溝通與處理。本站內容系統采集于網絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《HTML5 Canvas實現平移/放縮/旋轉deom示例(附截圖)》相關的同類信息!
  • 本頁收集關于HTML5 Canvas實現平移/放縮/旋轉deom示例(附截圖)的相關信息資訊供網民參考!
  • 推薦文章
    主站蜘蛛池模板: 国产成人一区二区三区A片免费| 当兵的又大又粗好爽h| 好爽?好紧?腿张开自己| 久久女婷色欲AV| 香港三日本三韩国三欧美三级| 亚洲欧美a| 久久99国产综合精合精品| 国产69精品久久99不卡软件 | 国产免费91| 日本少妇做爰全过程二区| 精品少妇人妻av无码中文字幕| 91三级在线| 太紧了夹得我的巴好爽欧美| 邱淑贞无删减三级2828| 纯肉黄辣放荡高H短篇古代| 李丽莎自慰极品罕见露头| 女人和女人互慰视频| 羞辱耳光下跪视频丨vk | 亚洲精品你懂的| 婷婷六月久久综合丁香乐透| 野花日本大全免费观看8动漫| 百合纯肉巨黄H文| 一夜未拔H圆房~h| 天海翼一区在线播放| 第一次破学生处视频免费观看| 女攻总攻调教高h道具| 日本网站黄色| 刚结婚一天做几次| 免费动漫黄A片在线观看床震| 99热在线精品| 1000部视频辣妞范体验区| 亚洲国产91| 女生隐私部位无遮挡| 极品少妇XXOO无码大片下载| 色极影院| 第一章少妇初尝云雨69章| 色老太BBW| 免费打光屁股视频的网站| 日韩按摩片一级| 精品伊人久久大线蕉地址| 大桥未久在线播放亚洲一区|