This time I will bring you the effect of using canvas to realize the interaction between the ball and the mouse. How to use canvas to realize the interaction between the ball and the mouse. What should you pay attention to when realizing the interaction between the ball and the mouse using canvas? In terms of aspects, let’s do a small case first
<!DOCTYPE html> <html > <head> <meta charset="UTF-8"> <title>canvas实现小球和鼠标的互动</title> <meta name="keywords" content=" canvas实现小球和鼠标的互动" /> <meta name="description" content=" canvas实现小球和鼠标的互动" /> <link rel="stylesheet" href="css/style.css"> </head> <body> <canvas id="nodes" width="400" height="400"></canvas> <script src='http://www.5iweb.com.cn/statics/js/jquery.1.7.1.min.js'></script> <script src='http://www.5iweb.com.cn/statics/js/jquery.easing.js'></script> <script src="js/index.js"></script> </body> </html> Css部分: canvas { margin: -60px auto; }
There are only so many interactions between the small ball made by canvas and the mouse. For more exciting information, please pay attention to other related articles on the PHP Chinese website!
Related reading:
What new background attributes are there in CSS3
How to make a flexible box in css3
How to make responsive layout with CSS3
The above is the detailed content of How to use canvas to realize interaction between ball and mouse. For more information, please follow other related articles on the PHP Chinese website!