index.html 10 KB

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