利用html5 canvas绘制圆形发散效果的图形详解编程语言

<!DOCTYPE html> 
<html> 
<body> 
 
<canvas id="myCanvas" width="200" height="100" style="border:1px solid #d3d3d3;"> 
Your browser does not support the HTML5 canvas tag.</canvas> 
 
<script type="text/javascript"> 
 
var c=document.getElementById("myCanvas"); 
var ctx=c.getContext("2d"); 
 
// Create gradient 
var grd=ctx.createRadialGradient(75,50,5,90,60,100); 
grd.addColorStop(0,"red"); 
grd.addColorStop(1,"white"); 
 
// Fill with gradient 
ctx.fillStyle=grd; 
ctx.fillRect(10,10,150,80); 
 
</script> 
 
</body> 
</html>

效果图如下:

html5 canvas

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/10069.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论