js实现旋转的星空效果

前端之家收集整理的这篇文章主要介绍了js实现旋转的星空效果前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

本文实例为大家分享了js实现旋转的星空效果的具体代码,供大家参考,具体内容如下

  1. <!DOCTYPE HTML>
  2. <html lang="en">
  3. <head>
  4. <Meta charset="utf8">
  5. <Meta name="viewport" content="width=device-width,initial-scale=1.0">
  6. <Meta name="keywords" content="starry sky">
  7. <Meta name="description" content="the starry sky">
  8. <title>旋转的星空(the starry sky)</title>
  9. <style>
  10. body {
  11. margin: 0;
  12. padding: 0;
  13. overflow: hidden;
  14. }
  15. #canvas {
  16. position: absolute;
  17. left: 0;
  18. }
  19. #starCanvasDiv {
  20. background-color: white;
  21. }
  22. </style>
  23. </head>
  24. <body>
  25. <canvas id="canvas">Your browser can not support canvas</canvas>
  26. <script>
  27. var doublePI = Math.PI * 2;
  28.  
  29. var canvas = document.getElementById("canvas");
  30. var ctx = canvas.getContext("2d");
  31. var cx,cy;
  32. var starCanvas;
  33. var alphaChangeProbability = new AlphaChangeProbability();
  34.  
  35. //色相
  36. var hue = 217;
  37. //星空背景颜色
  38. var bgColor = 'hsl(' + hue + ',60%,5%)';
  39.  
  40. //画布的外切圆半径
  41. var canvasRadius;
  42. //每旋转一圈要需要的帧数
  43. var radianStepCount;
  44. //星星的总个数
  45. var starCount;
  46. //群星
  47. var stars;
  48.  
  49. function onResize() {
  50. canvas.width = window.innerWidth;
  51. canvas.height = window.innerHeight;
  52. cx = canvas.width / 2;
  53. cy = canvas.height / 2;
  54. canvasRadius = Math.sqrt(Math.pow(canvas.width,2) + Math.pow(canvas.height,2)) / 2;
  55. radianStepCount = canvasRadius * 100;
  56. starCount = parseInt((canvas.width + canvas.height) * 0.5);
  57. stars = [];
  58. for(var i=0; i<starCount; i++) {
  59. stars.push(new Star());
  60. }
  61. //初始时要先绘制一层背景,否则第一波星星走过的路径会有画布底料涂抹不均匀的感觉
  62. ctx.globalCompositeOperation = "source-over";
  63. ctx.globalAlpha = 1;
  64. ctx.fillStyle = bgColor;
  65. ctx.fillRect(0,canvas.width,canvas.height);
  66. }
  67.  
  68. function init() {
  69. createStarCanvas();
  70.  
  71. window.addEventListener("resize",onResize);
  72. onResize();
  73. loop();
  74. }
  75.  
  76. //在[min,max)范围内随机一个整数
  77. function randomInt(min,max) {
  78. if(arguments.length === 1) {
  79. max = min;
  80. min = 0;
  81. } else if(min > max) {
  82. var tmp = max;
  83. mix = min;
  84. min = tmp;
  85. }
  86. return Math.floor(Math.random() * (max - min) + min);
  87. }
  88.  
  89. //透明度改变的概率
  90. function AlphaChangeProbability() {
  91.  
  92. //透明度改变的步长
  93. var alphaStep = 0.05;
  94.  
  95. //透明度增加
  96. var plus = 1;
  97. //透明度减少
  98. var minus = 1;
  99. //透明度不变
  100. var invariant = 8;
  101.  
  102. //总概率
  103. var totalChance = plus + minus + invariant;
  104.  
  105. //获取随机的透明度改变值
  106. function getRandomChangeValue() {
  107. var value = Math.random() * totalChance;
  108. if(value < plus) {
  109. return alphaStep;
  110. }
  111. value -= plus;
  112. if(value < minus) {
  113. return -alphaStep;
  114. }
  115. return 0;
  116. }
  117.  
  118. //随机改变alpha的值
  119. this.randomChangeAlpha = function(alpha) {
  120. alpha += getRandomChangeValue();
  121. if(alpha > 1) {
  122. alpha = 1;
  123. } else if(alpha < 0) {
  124. alpha = 0;
  125. }
  126. return alpha;
  127. }
  128. }
  129.  
  130. //创建星星图片
  131. function createStarCanvas() {
  132. starCanvas = document.createElement("canvas");
  133. var ctx = starCanvas.getContext("2d");
  134. starCanvas.width = 100;
  135. starCanvas.height = 100;
  136. var cx = starCanvas.width / 2;
  137. var cy = starCanvas.height / 2;
  138. var radius = Math.max(cx,cy);
  139. var gradient = ctx.createRadialGradient(cx,cy,cx,radius);
  140. gradient.addColorStop(0.025,'#CCC');
  141. gradient.addColorStop(0.1,'hsl(' + hue + ',65%,35%)');
  142. gradient.addColorStop(0.25,bgColor);
  143. gradient.addColorStop(1,"transparent");
  144. ctx.fillStyle = gradient;
  145. ctx.beginPath();
  146. ctx.arc(cx,radius,doublePI);
  147. ctx.fill();
  148. }
  149.  
  150. //星体对象
  151. var Star = function() {
  152. //星体运行的轨道半径
  153. this.orbitRadius = Math.random() * canvasRadius;
  154. //星体的半径
  155. this.radius = randomInt(60,this.orbitRadius) / 8;
  156. //星体透明度
  157. this.alpha = Math.random();
  158. //相对轨道中心(即画布中心)的角度
  159. this.theta = Math.random() * doublePI;
  160. //角速度
  161. this.speed = Math.random() * this.orbitRadius / radianStepCount;
  162.  
  163. //获取当前坐标
  164. this.getPos = function() {
  165. return {
  166. x: cx + this.orbitRadius * Math.cos(this.theta),y: cy + this.orbitRadius * Math.sin(this.theta)
  167. }
  168. }
  169. }
  170.  
  171. Star.prototype.update = function() {
  172. this.alpha = alphaChangeProbability.randomChangeAlpha(this.alpha);
  173. this.theta += this.speed;
  174. this.pos = this.getPos();
  175. }
  176.  
  177. Star.prototype.draw = function() {
  178. ctx.globalAlpha = this.alpha;
  179. ctx.drawImage(starCanvas,this.pos.x,this.pos.y,this.radius,this.radius);
  180. }
  181.  
  182. function loop() {
  183. ctx.globalCompositeOperation = "source-over";
  184. ctx.globalAlpha = 0.5;
  185. ctx.fillStyle = bgColor;
  186. ctx.fillRect(0,canvas.height);
  187. ctx.globalCompositeOperation = "lighter";
  188. for(var i = 0; i < stars.length; i++) {
  189. stars[i].update();
  190. stars[i].draw();
  191. }
  192. //绘制星体图样
  193. ctx.globalCompositeOperation = "source-over";
  194. ctx.globalAlpha = 1;
  195. ctx.fillStyle = "white";
  196. ctx.fillRect(0,starCanvas.width,starCanvas.height);
  197. ctx.drawImage(starCanvas,starCanvas.height);
  198. requestAnimationFrame(loop);
  199. }
  200.  
  201. init();
  202. </script>
  203. </body>
  204. </html>

js实现旋转的星空效果


以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

猜你在找的JavaScript相关文章