JavaScript canvas implements graphics and text with shadows

JavaScript canvas implements graphics and text with shadows

Use canvas to create graphics and text with shadows for your reference. The specific contents are as follows

ctx.shadowBlur=20; Set the shadow blur range.
ctx.shadowColor; Sets the shadow blur color.

You can also use

The shadowOffsetX property sets the horizontal distance between the shadow and the graphic.
The shadowOffsetY property sets the vertical distance between the shadow and the graphic.

Code:

<!DOCTYPE html>
<html>
<head>
 <title>Creating graphics and text with shadows</title>
</head>
<body>
<h3 align="center">Radial gradient color</h3>
<hr>
<canvas id="myc1" width="800" height="600"></canvas>
<script type="text/javascript">
 var myc = document.getElementById("myc1"); //Draw a new canvas var ctx = myc.getContext("2d"); //Set the drawing environment to 2d
 var myg = ctx.createRadialGradient(130,200,0,130,200,90);
 //addColorStop method first parameter is the percentage in the image and second parameter is the color myg.addColorStop(0,"white");
 myg.addColorStop(0.5,"pink"); 
 myg.addColorStop(0.6,"green");
 myg.addColorStop(0.4,"blue");
 ctx.fillStyle=myg;
 ctx.shadowColor="black"; //Shadow color ctx.shadowBlur=20; //Shadow blur range ctx.arc(130,200,100,0,Math.PI*2); //Draw a new circle ctx.fill();

 ctx.beginPath();
 var myg1 = ctx.createRadialGradient(550,250,50,550,250,200);
 myg1.addColorStop(0,"blue");
 myg1.addColorStop(0.6,"green");
 myg1.addColorStop(1,"red");
 ctx.fillStyle=myg1; 
 ctx.font="50px bold"; //Set font size and font style ctx.shadowBlur=50; //Set shadow blur range ctx.shadowColor="yellow"; //Shadow color;
 ctx.shadowOffsetX=30; //Horizontal online offset;
 ctx.shadowOffsetY=-30; //Vertical offset downward;
 ctx.fillText("Radioactive gradient text",350,200);


</script>
</body>
</html>

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • JSP implements pop-up login box and shadow effect
  • WebGL three.js learning notes: shadows and object animation effects
  • How to use Three.js to achieve shadow effect example code
  • js current page login registration box, fixed div, bottom shadow example code
  • JS current page login registration box, fixed DIV, bottom shadow example code
  • js to achieve interference-free shadow effect is simple and easy to use (attached file download)
  • Div+JS shadow menu Microsoft used before
  • Research summary on using JS to achieve shadow effects of web page elements

<<:  View MySQL installation information under Linux server

>>:  Nginx uses Lua+Redis to dynamically block IP

Recommend

Javascript basics about built-in objects

Table of contents 1. Introduction to built-in obj...

Detailed steps to install mysql in Win

This article shares the detailed steps of install...

Docker container custom hosts network access operation

Adding the extra_hosts keyword in docker-compose....

CentOS7 deploys version 19 of docker (simple, you can follow it)

1. Install dependency packages [root@localhost ~]...

How to fill items in columns in CSS Grid Layout

Suppose we have n items and we have to sort these...

How to add indexes to MySQL

Here is a brief introduction to indexes: The purp...

Analysis and solution of a MySQL slow log monitoring false alarm problem

Previously, for various reasons, some alarms were...

HTML tutorial, easy to learn HTML language

1. <body background=image file name bgcolor=co...

Implementation code for installing vsftpd in Ubuntu 18.04

Install vsftpd $ sudo apt-get install vsftpd -y S...

Bootstrap realizes the effect of carousel

This article shares the specific code of Bootstra...

How to restore a database and a table from a MySQL full database backup

In the official MySQL dump tool, how can I restor...

Win10 configuration tomcat environment variables tutorial diagram

Before configuration, we need to do the following...

Setting up VMware vSphere in VMware Workstation (Graphic Tutorial)

VMware vSphere is the industry's leading and ...