欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

html5学习之路(Canvas画布1)

程序员文章站 2023-11-18 15:17:28
使用canvas画一个矩形,圆和直线 [html]  
使用canvas画一个矩形,圆和直线

[html]  

<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">  

<html xmlns="http://www.w3.org/1999/xhtml">  

<head>  

<meta http-equiv="content-type" content="text/html; charset=utf-8" />  

<title>canvas示例</title>  

<script type="text/javascript">  

  

    function mydrawrect(){  

        var canvas=document.getelementbyid("rect");  

        if (canvas==null){  

            return false;  

            }  

        var context=canvas.getcontext('2d');  

        context.fillstyle="#eeeeff";  

        context.fillrect(0,0,400,300);  

        context.fillstyle="red";  

        context.strokestyle="blue";  

        context.linewidth=1;  

        //绘制一个矩形  

        context.fillrect(50,50,100,100);  

        context.strokerect(50,50,100,100);  

        //绘制一个圆  

        context.beginpath();  

        context.arc(200,200,50,0,math.pi*2,true);  

        context.closepath();  

        context.fillstyle='rgba(255,0,0,0.25)';  

        context.fill();  

        //画直线  

        context.beginpath();  

        context.moveto(100,100);  

        context.lineto(100,300);  

        context.lineto(300,300);  

        context.closepath();  

        //context.fillstyle='rgba(255,0,0,0.25)';  

        //context.fill();  

        context.stroke();  

          

          

        }  

  

</script>  

  

  

  

</head>  

  

<body onload="return mydrawrect();">  

<canvas id="rect" width="400" height="300">  

  

</body>  www.2cto.com

</html>  

显示效果:

html5学习之路(Canvas画布1)