作者:小市民828_719 | 来源:互联网 | 2024-10-31 15:46
本教程旨在为HTML5初学者提供Canvas画布的基础知识与实践指导。通过详细解析Canvas元素的使用方法、绘图API及常见图形绘制技巧,帮助读者快速掌握在网页中利用Canvas进行动态图形创作的基本技能。
DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>title>
<style>
canvas{
border: 1px dashed black;
}
style>
<script>
window.onload = function(){
var canvas = document.getElementById("myCanvas");
var context = canvas.getContext("2d");
context.translate(100,100);//平移
var cop = 10;//试着减小或增大cop的值观察图案变化
for(var i = 1; i<cop; i++){
context.rotate(2*Math.PI*1/(cop-1));//旋转
context.rect(0,0,60,60);//画矩形
}
context.strokeStyle = "red";
context.stroke();
}
script>
head>
<body>
<canvas id="myCanvas" width="300" height="200">
canvas>
body>
html>