91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

html5 canvas fillRect坐標和大小的問題怎么解決

發布時間:2021-07-27 18:57:31 來源:億速云 閱讀:133 作者:chen 欄目:web開發

這篇文章主要講解了“html5 canvas fillRect坐標和大小的問題怎么解決”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“html5 canvas fillRect坐標和大小的問題怎么解決”吧!

fillRect(100,100,100,100) 前2個100是指坐標,后2個100是指寬和高。

今天學習html5 的canvas,發現fillRect的坐標和大小一直不對,研究了半天,發現canvas的寬度和高度必須內聯在canvas標簽中才對。郁悶了半天。

錯誤的方式1:

代碼如下:

<!doctype html> 
<html lang="en"> 
<head> 
<meta charset="UTF-8"> 
<title>Document</title> 
<style> 
#mycanvas{ 
width: 200px; 
height: 200px; 
background: yellow; 
} 
</style> 
</head> 
<body> 
<canvas id='mycanvas' ></canvas> 
<script> 
var c = document.getElementById('mycanvas'); 
var ctx = c.getContext("2d"); 
ctx.fillStyle='#f36'; 
ctx.fillRect(100, 100, 100, 100); 
</script> 
</body> 
</html>


錯誤的方式2:

代碼如下:

<!doctype html> 
<html lang="en"> 
<head> 
<meta charset="UTF-8"> 
<title>Document</title> 
</head> 
<body> 
<canvas id='mycanvas' style='width:200px;height:200px;background:yellow'></canvas> 
<script> 
var c = document.getElementById('mycanvas'); 
var ctx = c.getContext("2d"); 
ctx.fillStyle='#f36'; 
ctx.fillRect(100, 100, 100, 100); 
</script> 
</body> 
</html>


顯示結果:

正確的方式:

代碼如下:

<!doctype html> 
<html lang="en"> 
<head> 
<meta charset="UTF-8"> 
<title>Document</title> 
</head> 
<body> 
<canvas id='mycanvas' width='200px' height='200px' style='background:yellow'></canvas> 
<script> 
var c = document.getElementById('mycanvas'); 
var ctx = c.getContext("2d"); 
ctx.fillStyle='#f36'; 
ctx.fillRect(100, 100, 100, 100); 
</script> 
</body> 
</html>

感謝各位的閱讀,以上就是“html5 canvas fillRect坐標和大小的問題怎么解決”的內容了,經過本文的學習后,相信大家對html5 canvas fillRect坐標和大小的問題怎么解決這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

北宁市| 河北省| 托克托县| 香格里拉县| 化德县| 平山县| 扎鲁特旗| 六枝特区| 宜宾县| 洪雅县| 三门县| 西贡区| 临沭县| 唐海县| 衢州市| 崇阳县| 刚察县| 霍林郭勒市| 来凤县| 清丰县| 江城| 民勤县| 乐东| 阿坝县| 上犹县| 巢湖市| 太保市| 灵武市| 五莲县| 保定市| 拉孜县| 大邑县| 土默特右旗| 和林格尔县| 泾阳县| 高邮市| 时尚| 海南省| 灵丘县| 郴州市| 阿图什市|