每天一个JavaScript实例-canvas画图
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>每天一个JavaScript实例-canvas画图</title> <style> .canvas{ width:600px; height:500px; } </style> <script> window.onload = function(){ var imgcanvas = document.getElementById("imgcanvas"); if(imgcanvas.getContext){ var ctx = imgcanvas.getContext('2d'); ctx.fillStyle="rgba(255,0,0,.1)"; ctx.strokeStyle = "#000"; //第一个 ctx.fillRect(0,0,100,100); ctx.strokeRect(0,0,100,100); //第二个 ctx.fillRect(50,50,100,200); //第三个 ctx.strokeRect(80,130,200,100); } } </script> </head> <body> <canvas class="canvas" id = "imgcanvas"> <p>画布</p> </canvas> </body> </html>
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。