這次帶給大家用canvas做出粒子噴泉動畫的效果,怎麼用canvas做出粒子噴泉動畫,canvas座粒子噴泉動畫需要注意哪些方面,接下來先做一個小案例
<!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> <div>鼠标点击,增加粒子喷泉效果</div> <canvas id="fireworks"></canvas> <script src="js/index.js"></script> </body> </html> Css部分: body, html, canvas { margin: 0; padding: 0; background-color: #111; overflow: hidden; } canvas { background-color: transparent; position: relative; z-index: 2; } .text { position: absolute; left: 0; top: 20px; width: 100%; text-align: center; font-size: 3.7vw; color: #fff; z-index: 1; opacity: 0.2; }
以上就是用canvas做出粒子噴泉動畫的整個過程,有興趣的朋友可以自己動手操作一下,更多精彩請關注php中文網其它相關文章!
相關閱讀:
#以上是怎麼用canvas做出粒子噴泉動畫的效果的詳細內容。更多資訊請關注PHP中文網其他相關文章!