index.html 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  1. <!DOCTYPE html>
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  4. <title>Gravity</title>
  5. <link rel="manifest" href="/site.webmanifest">
  6. <link rel="stylesheet" href="/css/bootstrap.min.css" crossorigin="anonymous">
  7. <link rel="stylesheet" href="/css/style.css">
  8. <link rel="preconnect" href="https://fonts.gstatic.com">
  9. <link href="https://fonts.loli.net/css2?family=Anonymous+Pro:ital,wght@0,400;0,700;1,400;1,700
  10. &family=Noto+Serif+SC:wght@300;400;500;600;700&display=swap" rel="stylesheet">
  11. <script src="https://apps.bdimg.com/libs/jquery/1.10.2/jquery.min.js"></script>
  12. <style>
  13. * {
  14. margin: 0;
  15. padding: 0;
  16. width: 100%;
  17. height: 100%;
  18. overflow: hidden;
  19. }
  20. .btn {
  21. width: auto;
  22. height: auto;
  23. }
  24. body {
  25. background: radial-gradient(rgb(235, 235, 235), floralwhite);
  26. padding: 0;
  27. }
  28. </style>
  29. </head>
  30. <body>
  31. <a class="btn btn-default" href="/" onmouseenter="alert('单击屏幕添加元素。\n所有元素互相吸引,鼠标亦有引力。');$('.btn').hide()"
  32. style="position:fixed"><span class="glyphicon glyphicon-question-sign" aria-hidden="true"></span></a>
  33. <canvas id="canvas" onclick='init(10)' width="500" height="500"></canvas>
  34. </body>
  35. <script>
  36. const LOST = 0.3;
  37. var canvas = document.getElementById('canvas');
  38. var context = canvas.getContext('2d');
  39. var g = [];
  40. const MAX_MASS = 3000;
  41. const PLANET_COUNT = 300;
  42. const FRAGMENT_COUNT = 100;
  43. const FRAGMENT_SPEED = 20;
  44. const MAX_SPEED = 8;
  45. const G = 0.5;
  46. var maxLineLength = 45;
  47. const DEFAULT_MASS = 20;
  48. const LOCK_TIME = 50;
  49. const COLOR = '#333';
  50. const LINE_COLOR = '#2344';
  51. const MOUSE_MASS = 100;
  52. var mousepoint = { x: 0, y: 0 };
  53. window.AudioContext = window.AudioContext || window.webkitAudioContext;
  54. if (!window.AudioContext) {
  55. console.log('当前浏览器不支持Web Audio API');
  56. }
  57. var audioCtx = new AudioContext();
  58. var arrFrequency = [196.00, 220.00, 246.94, 261.63, 293.66, 329.63, 349.23, 392.00, 440.00, 493.88, 523.25, 587.33, 659.25, 698.46, 783.99, 880.00, 987.77, 1046.50];
  59. function init(count) {
  60. if (g.length > 300) return;
  61. var w = canvas.clientWidth;
  62. var h = canvas.clientHeight;
  63. for (var i = 0; i < count; i++) {
  64. g.push({ x: Math.random() * w, y: Math.random() * h, mass: DEFAULT_MASS, vx: Math.random() * 2 - 1, vy: Math.random() * 2 - 1, lock: 0 });
  65. }
  66. }
  67. function fillRound(cx, cy, r, color) {
  68. context.beginPath();
  69. context.fillStyle = color;
  70. context.arc(cx, cy, Math.sqrt(r) / Math.PI, 0 * Math.PI, 2 * Math.PI, true);
  71. context.fill();
  72. }
  73. function drawLine(x1, y1, x2, y2, color) {
  74. context.beginPath();
  75. context.moveTo(x1, y1);
  76. context.strokeStyle = color;
  77. context.lineTo(x2, y2);
  78. context.stroke();
  79. }
  80. function collide() {
  81. for (var i = 0, count = g.length; i < count; i++) {
  82. for (var i1 = 0; i1 < count; i1++) {
  83. if (i1 != i && g[i1]) {
  84. if (g[i].lock > 0 && g[i1].lock > 0) continue;
  85. if ((g[i].lock > 0 || g[i1].lock > 0) && Math.random() > 0.1) continue;
  86. var r = Math.sqrt(Math.pow((g[i].x - g[i1].x), 2) + Math.pow((g[i].y - g[i1].y), 2));
  87. if (r <= Math.max(Math.sqrt(g[i1].mass) / Math.PI + Math.sqrt(g[i].mass) / Math.PI) && g[i1].mass >= g[i].mass) {
  88. var amplitude = Math.min(g[i1].mass, g[i].mass) / 1000 + (g[i1].mass + g[i].mass) / 2000;
  89. g[i1].vy = (g[i1].mass * g[i1].vy + g[i].mass * g[i].vy) / (g[i1].mass + g[i].mass);
  90. g[i1].vx = (g[i1].mass * g[i1].vx + g[i].mass * g[i].vx) / (g[i1].mass + g[i].mass);
  91. g[i1].mass += g[i].mass;
  92. g[i] = null;
  93. var frequency = arrFrequency[Math.floor(Math.random() * 15)];
  94. var oscillator = audioCtx.createOscillator();
  95. var gainNode = audioCtx.createGain();
  96. oscillator.connect(gainNode);
  97. gainNode.connect(audioCtx.destination);
  98. oscillator.type = 'sawtooth';
  99. oscillator.frequency.value = frequency;
  100. gainNode.gain.setValueAtTime(0, audioCtx.currentTime);
  101. gainNode.gain.linearRampToValueAtTime(amplitude, audioCtx.currentTime + 0.01);
  102. oscillator.start(audioCtx.currentTime);
  103. gainNode.gain.exponentialRampToValueAtTime(0.001, audioCtx.currentTime + 1);
  104. oscillator.stop(audioCtx.currentTime + 1);
  105. break;
  106. }
  107. }
  108. }
  109. }
  110. }
  111. function explode() {
  112. for (var i = 0, count = g.length; i < count; i++) {
  113. if (g[i] && g[i].mass >= MAX_MASS) {
  114. for (var i1 = 0; i1 < FRAGMENT_COUNT; i1++) {
  115. g.push({
  116. x: g[i].x + Math.random(),
  117. y: g[i].y + Math.random(),
  118. mass: g[i].mass / FRAGMENT_COUNT,
  119. vx: FRAGMENT_SPEED * (Math.random() * 2 - 1),
  120. vy: FRAGMENT_SPEED * (Math.random() * 2 - 1),
  121. lock: LOCK_TIME * (Math.random() + 1)
  122. });
  123. }
  124. var frequency = arrFrequency[Math.floor(Math.random() * 10)];
  125. var oscillator = audioCtx.createOscillator();
  126. var gainNode = audioCtx.createGain();
  127. oscillator.connect(gainNode);
  128. gainNode.connect(audioCtx.destination);
  129. oscillator.type = 'sine';
  130. oscillator.frequency.value = frequency;
  131. gainNode.gain.setValueAtTime(0, audioCtx.currentTime);
  132. gainNode.gain.linearRampToValueAtTime(1.3, audioCtx.currentTime + 0.01);
  133. oscillator.start(audioCtx.currentTime);
  134. gainNode.gain.exponentialRampToValueAtTime(0.001, audioCtx.currentTime + 10);
  135. oscillator.stop(audioCtx.currentTime + 10);
  136. g[i] = null;
  137. }
  138. }
  139. }
  140. canvas.onmousemove = function (event) {
  141. var e = event || window.event;
  142. mousepoint = { 'x': e.clientX, 'y': e.clientY };
  143. }
  144. function step() {
  145. var w = canvas.clientWidth;
  146. var h = canvas.clientHeight;
  147. collide();
  148. explode();
  149. for (var i = 0, count = g.length; i < count; i++) {
  150. if (g[i]) {
  151. if (g[i].vx === NaN) {
  152. g[i].vx = 0
  153. }
  154. if (g[i].vy === NaN) {
  155. g[i].vy = 0
  156. }
  157. }
  158. }
  159. g = g.filter(e => e && e.x !== NaN && e.y !== NaN && e.vx !== NaN && e.vy !== NaN && e.mass !== NaN);
  160. for (var i = 0, count = g.length; i < count; i++) {
  161. if (g[i].x > w) {
  162. g[i].x -= (g[i].x - w) * 2;
  163. g[i].vx *= -(1 - LOST);
  164. } else if (g[i].x < 0) {
  165. g[i].x += g[i].x * -2;
  166. g[i].vx *= -(1 - LOST);
  167. }
  168. if (g[i].y > h) {
  169. g[i].y -= (g[i].y - h) * 2;
  170. g[i].vy *= -(1 - LOST);
  171. } else if (g[i].y < 0) {
  172. g[i].y += g[i].y * -2;
  173. g[i].vy *= -(1 - LOST);
  174. }
  175. fillRound(g[i].x, g[i].y, g[i].mass, COLOR)
  176. for (var i1 = 0; i1 < count; i1++) {
  177. if (i1 != i) {
  178. var r = Math.sqrt(Math.pow((g[i].x - g[i1].x), 2) + Math.pow((g[i].y - g[i1].y), 2));
  179. var f = r != 0 ? G * G * g[i1].mass / Math.pow(r, 2) : 0;
  180. var dx = g[i1].x - g[i].x;
  181. var dy = g[i1].y - g[i].y;
  182. if (g[i].mass > 0) {
  183. g[i].vy += f / r * dy;
  184. g[i].vx += f / r * dx;
  185. }
  186. if (i1 > i && r <= maxLineLength) {
  187. drawLine(g[i].x, g[i].y, g[i1].x, g[i1].y, LINE_COLOR)
  188. }
  189. }
  190. }
  191. //
  192. var r = Math.max(1, Math.sqrt(Math.pow((g[i].x - mousepoint.x), 2) + Math.pow((g[i].y - mousepoint.y), 2)));
  193. if (r > maxLineLength / 8) {
  194. var f = r != 0 ? G * G * MOUSE_MASS / Math.pow(r, 2) : 0;
  195. var dx = mousepoint.x - g[i].x;
  196. var dy = mousepoint.y - g[i].y;
  197. if (g[i].mass > 0) {
  198. g[i].vy += f / r * dy;
  199. g[i].vx += f / r * dx;
  200. }
  201. if (r <= maxLineLength) {
  202. drawLine(g[i].x, g[i].y, mousepoint.x, mousepoint.y, LINE_COLOR);
  203. }
  204. }
  205. //
  206. var speedNow = Math.sqrt(Math.pow(g[i].vx, 2) + Math.pow(g[i].vy, 2))
  207. if (speedNow > MAX_SPEED) {
  208. g[i].vx = g[i].vx * MAX_SPEED / speedNow;
  209. g[i].vy = g[i].vy * MAX_SPEED / speedNow;
  210. }
  211. g[i].x += g[i].vx;
  212. g[i].y += g[i].vy;
  213. g[i].lock--;
  214. }
  215. }
  216. // init(PLANET_COUNT);
  217. setInterval(function () {
  218. var w = document.body.clientWidth;
  219. var h = document.body.clientHeight;
  220. maxLineLength = Math.max(30, Math.min(w / 10, h / 10));
  221. canvas.setAttribute('width', w);
  222. canvas.setAttribute('height', h);
  223. canvas.style.width = w + 'px';
  224. canvas.style.height = h + 'px';
  225. step();
  226. }, 30)
  227. </script>