码迷,mamicode.com
首页 > 其他好文 > 详细

2D上下文

时间:2018-11-20 01:15:51      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:console   作用   contex   text   OLE   使用   因此   矩阵   nbsp   

js中说明的上下文表示的意思为C++中作用域(个人理解),因此2D上下文说明的是这个2D的作用域

像素:用来描述图片清晰度的小矩阵

填充和描边

填充context.fillStyle = "yellow";

描边context.strokeStyle = "red";

如果单纯的使用这两个属性,不会再网页上面显示的。

var drawing = document.getElementById("drawing");
if(drawing.getContext)
{
  var context = drawing.getContext("2d");
  context.strokeStyle = "red";
  context.fillStyle = "yellow";
  context.fillRect(20,20,150,100)
  context.strokeRect(20,20,150,100)
  console.log(context)
}

 

2D上下文

标签:console   作用   contex   text   OLE   使用   因此   矩阵   nbsp   

原文地址:https://www.cnblogs.com/MyUniverse/p/9986684.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!