当前位置:   article > 正文

使用HTML写一个烟花代码

html代码烟火背景

为了使用HTML写一个烟花效果,您可以使用以下代码:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. canvas {
  6. display: block;
  7. background: black;
  8. }
  9. </style>
  10. </head>
  11. <body>
  12. <canvas id="myCanvas" width="400" height="400"></canvas>
  13. <script>
  14. //获取canvas元素
  15. var canvas = document.getElementById("myCanvas");
  16. //获取绘图上下文
  17. var ctx = canvas.getContext("2d");
  18. var colors = ["red", "orange", "yellow", "green", "blue", "purple"];
  19. function draw() {
  20. ctx.clearRect(0, 0, canvas.width, canvas.height);
  21. //画随机的烟花
  22. for (var i = 0; i < 100; i++) {
  23. var x = Math.random() * canvas.width;
  24. var y = Math.random() * canvas.height;
  25. var radius = Math.random() * 20 + 10;
  26. var color = colors[Math.floor(Math.random() * colors.length)];
  27. drawFirework(x, y, radius, color);
  28. }
  29. //重复执行动画
  30. requestAnimationFrame(draw);
  31. }
  32. function drawFirework(x, y, radius, color) {
  33. //画圆
  34. ctx.beginPath();
  35. ctx.arc(x, y, radius, 0, 2 * Math.PI);
  36. ctx.fillStyle = color;
  37. ctx.fill();
  38. }
  39. draw();
  40. </script>
  41. </body>
  42. </html>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53

这个代码将会在一个黑色的画布上绘制100个随机的烟花,每个烟花都有随机的颜色和半径。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/85146
推荐阅读
相关标签
  

闽ICP备14008679号