canvas 是 HTML5 新增的标签,利用它我们可以轻松实现图形的绘制。canvas 元素本身并没有绘制能力,它只是一个图形的容器,必须使用脚本(通常是 JavaScript)配合来完成绘图任务。今天为大家分享一下基于 canvas 动态气泡背景的实现方法。

基于 canvas 一款非常酷炫的动态气泡背景实现方法-图片1

 实现方式

将下面的内容保存为 .js 文件,然后在网页中引入即可。

  1. document.writeln("<div id=\'bubble\' style=\'width:100%;height:100%;position:fixed;top:0;left:0;z-index:-1;\'></div>");
  2.  
  3. class BGBubble {
  4. constructor(opts) {
  5. this.defaultOpts = {
  6. id: '', // 容器ID
  7. num: 100, // 个数
  8. start_probability: 0.1, // 如果数量小于num,有这些几率添加一个新的
  9. radius_min: 1, // 初始半径最小值
  10. radius_max: 2, // 初始半径最大值
  11. radius_add_min: .3, // 半径增加最小值
  12. radius_add_max: .5, // 半径增加最大值
  13. opacity_min: 0.3, // 初始透明度最小值
  14. opacity_max: 0.5, // 初始透明度最大值
  15. opacity_prev_min: .003, // 透明度递减值最小值
  16. opacity_prev_max: .005, // 透明度递减值最大值
  17. light_min: 40, // 颜色亮度最小值
  18. light_max: 70, // 颜色亮度最大值
  19. is_same_color: false, // 泡泡颜色是否相同
  20. background: "#f1f3f4"
  21. }
  22. if (Object.prototype.toString.call(opts) == "[object Object]") {
  23. this.userOpts = {...this.defaultOpts, ...opts}
  24. } else {
  25. this.userOpts = {...this.defaultOpts, id: opts}
  26. }
  27. this.color = this.random(0, 360)
  28. this.bubbleNum = []
  29. this.requestAnimationFrame = window.requestAnimationFrame || window.mozRequestAnimationFrame || window.webkitRequestAnimationFrame || window.msRequestAnimationFrame
  30. this.cancelAnimationFrame = window.cancelAnimationFrame || window.mozCancelAnimationFrame
  31. }
  32.  
  33. random(a, b) {
  34. return Math.random() * (b - a) + a //取a-b之间的随机值
  35. }
  36.  
  37. initBubble(color, isSameColor) {
  38. const width = window.innerWidth
  39. const height = window.innerHeight
  40. const userOpts = this.userOpts
  41. const light = this.random(userOpts.light_min, userOpts.light_max)
  42. this.bubble = {
  43. x: this.random(0, width),
  44. y: this.random(0, height),
  45. radius: this.random(userOpts.radius_min, userOpts.radius_max),
  46. radiusChange: this.random(userOpts.radius_add_min, userOpts.radius_add_max),
  47. opacity: this.random(userOpts.opacity_min, userOpts.opacity_max),
  48. opacityChange: this.random(userOpts.opacity_prev_min, userOpts.opacity_prev_max),
  49. light,
  50. color: `hsl(${isSameColor ? color : this.random(0, 360)},100%,${light}%)`,
  51. }
  52. }
  53.  
  54. bubbling(ctx, color, isSameColor) {
  55. !this.bubble && this.initBubble(color, isSameColor)
  56. const bubble = this.bubble
  57. ctx.fillStyle = bubble.color;
  58. ctx.globalAlpha = bubble.opacity;
  59. ctx.beginPath();
  60. ctx.arc(bubble.x, bubble.y, bubble.radius, 0, 2 * Math.PI, true);
  61. ctx.closePath();
  62. ctx.fill();
  63. ctx.globalAlpha = 1;
  64. bubble.opacity -= bubble.opacityChange;
  65. bubble.radius += bubble.radiusChange;
  66. if (bubble.opacity <= 0) {
  67. this.initBubble(color, isSameColor)
  68. return
  69. }
  70. }
  71.  
  72. createCanvas() {
  73. this.canvas = document.createElement('canvas')
  74. this.ctx = this.canvas.getContext('2d')
  75. this.canvas.id = "bg_canvas";
  76. this.canvas.style.display = 'block' //防止全屏的canvas出现滚动条
  77. this.canvas.width = window.innerWidth
  78. this.canvas.height = window.innerHeight
  79. this.canvas.style.position = 'fixed'
  80. this.canvas.style.top = '0'
  81. this.canvas.style.left = '0'
  82. this.canvas.style.zIndex = '-1'
  83. document.getElementById(this.userOpts.id).appendChild(this.canvas)
  84. window.onresize = () => {
  85. this.canvas.width = window.innerWidth
  86. this.canvas.height = window.innerHeight
  87. }
  88. }
  89.  
  90. start() {
  91. const width = window.innerWidth
  92. const height = window.innerHeight
  93. this.color += 0.1
  94. this.ctx.fillStyle = this.defaultOpts.background; //这里修改颜色hsl(${this.color},100%,97%)//rgba(255, 255, 255, 0)
  95. this.ctx.fillRect(0, 0, width, height);
  96. if (this.bubbleNum.length < this.userOpts.num && Math.random() < this.userOpts.start_probability) {
  97. this.bubbleNum.push(new BGBubble())
  98. }
  99. this.bubbleNum.forEach(bubble => bubble.bubbling(this.ctx, this.color, this.userOpts.is_same_color))
  100. const requestAnimationFrame = this.requestAnimationFrame
  101. this.myReq = requestAnimationFrame(() => this.start())
  102. }
  103.  
  104. destory() {
  105. const cancelAnimationFrame = this.cancelAnimationFrame
  106. cancelAnimationFrame(this.myReq)
  107. window.onresize = null
  108. }
  109. }
  110.  
  111. const bubbleDemo = new BGBubble('bubble')
  112. bubbleDemo.createCanvas()
  113. bubbleDemo.start()

效果预览

参数可以自行修改,完成后的预览效果如下:

基于 canvas 一款非常酷炫的动态气泡背景实现方法-图片2

结束语

利用 canvas 通过脚本我们可以绘制出各式各样的图形,本文简单分享了一下一款基于 canvas 标签非常酷炫的动态气泡背景的实现方法,如果大家喜欢的话可以添加到自己的网站上。如果有任何问题或建议,欢迎在下方评论处留言。

本文已通过「原本」原创作品认证,转载请注明文章出处及链接。

WEB最后更新:2022-8-3
夏日阳光
  • 本文由 夏日阳光 发表于 2021年9月22日
  • 本文为夏日阳光原创文章,转载请务必保留本文链接:https://www.pieruo.com/188.html
匿名

发表评论

匿名网友
:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:
确定

拖动滑块以完成验证
加载中...