博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
canvas绘制正文形并填充-2
阅读量:5990 次
发布时间:2019-06-20

本文共 905 字,大约阅读时间需要 3 分钟。

效果图

html结构

<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8">

<meta http-equiv="X-UA-Compatible" content="IE=edge">

<title>canvas10</title>

<link rel="stylesheet" href="">

</head>

<body>

<canvas id="canvas" style ="border:1px solid #aaa;diplay:block;margin:50px auto;">

当前浏览器不支持canvas,请更换浏览器后再试

</canvas>

</body>

</html>

js脚本

<script>

window.onload = function(){

var canvas = document.getElementById('canvas');

canvas.width = 800;

canvas.height = 800;

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

drawRect(context,100,100,400,400,10,"#058","red");

}

function drawRect(context,x,y,width,height,borderWidth,borderColor,fillColor){

context.beginPath();

context.rect(x,y,width,height);

context.closePath();

context.lineWidth = borderWidth;

context.fillStyle = fillColor;

context.strokeStyle = borderColor;

context.fill();

context.stroke();

}

</script>

本文转自  素颜猪  51CTO博客,原文链接:
http://blog.51cto.com/suyanzhu/1892696

转载地址:http://vqnlx.baihongyu.com/

你可能感兴趣的文章
安装Mod_Security On Apache2.4(Ubuntu 14.04)
查看>>
线性规划与单纯形法---单纯形法的计算步骤
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
shell实例手册
查看>>
CentOS6.9安装CLI2.0
查看>>
利用ACS Engine创建Kubernetes集群
查看>>
2013年年度微博热门话题盘点
查看>>
LVS负载均衡
查看>>
如何使用System.Net.Mail.SmtpClient在SharePoint发送邮件
查看>>
我的友情链接
查看>>
.NET设置日期格式转换
查看>>
ajax+java+javaScript 实现直方图
查看>>
【HAVENT原创】前端跨域一站式登录实现 ( iframe + window.name )
查看>>
some ruby website
查看>>
GRE OVER IPSEC 普通命令配置
查看>>
梦想之路是否该继续!!!
查看>>
AABBox游戏开发导航之网站分类
查看>>
python urllib爬虫
查看>>
我的友情链接
查看>>