background.js 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. // mode : terrain de vie, proximité, superposition....
  2. // profondeur : atlas, carte
  3. let modeAmount = 0,
  4. curentMode = 1, prevMode,
  5. currentProfondeur = "atlas",
  6. colors = {
  7. bg: {
  8. h: 29,
  9. s: 48,
  10. l: 48
  11. }
  12. };
  13. document.querySelectorAll('.mode').forEach(function(node, index) {
  14. modeAmount++;
  15. node.addEventListener('click', function() {
  16. document.querySelectorAll('.active').forEach(function(el) {
  17. el.classList.remove('active');
  18. if (currentProfondeur == "carte") { el.classList.add('collapsed'); }
  19. });
  20. node.classList.toggle('active');
  21. prevMode = curentMode;
  22. curentMode = index + 1;
  23. if (curentMode != prevMode) {
  24. changeColors(curentMode - prevMode);
  25. }
  26. })
  27. });
  28. // pb si on clique plusieurs fois d'affilé, revient pas sur les bonnes couleurs
  29. // le passage entre toutes les couleurs quand le diffAmount est élevé n'est pas bien
  30. // -> préférer ajouter un rectangle de la bonne couleur et lui augmenter l'opacité
  31. // -> ou peut-être changer le fond en css ?
  32. function changeColors(diffAmount) {
  33. let originColor = colors.bg.h,
  34. currentColor = originColor,
  35. newColor = originColor + (360 / modeAmount) * diffAmount,
  36. transitionTime = 50,
  37. stepAmount = (newColor - originColor) / transitionTime;
  38. let animation = setInterval(() => {
  39. if (
  40. (diffAmount > 0 && currentColor < newColor) ||
  41. (diffAmount < 0 && currentColor > newColor)) {
  42. currentColor = currentColor + stepAmount;
  43. colors.bg.h = currentColor;
  44. } else {
  45. clearInterval(animation);
  46. }
  47. }, transitionTime);
  48. }
  49. function toggleProfondeur(el) {
  50. if (el.classList.contains("selected")) {
  51. return;
  52. } else {
  53. for (let sibling of el.parentNode.children) {
  54. sibling.classList.remove('selected');
  55. }
  56. }
  57. el.classList.add("selected");
  58. if(el.innerHTML == "L'atlas") {
  59. currentProfondeur = "atlas";
  60. document.querySelectorAll('.mode').forEach(function(node) {
  61. if(node.classList.contains("collapsed")) {
  62. node.classList.remove("collapsed");
  63. }
  64. });
  65. } else {
  66. currentProfondeur = "carte";
  67. document.querySelectorAll('.mode').forEach(function(node) {
  68. if(!node.classList.contains("active")) {
  69. node.classList.add("collapsed");
  70. }
  71. });
  72. }
  73. }
  74. function toggleMode(direction) {
  75. let modes = [];
  76. let currentIndex;
  77. document.querySelectorAll('.mode').forEach(function(node, index) {
  78. modes.push(node);
  79. if (node.classList.contains("active")) {
  80. currentIndex = index;
  81. node.classList.remove("active");
  82. if (currentProfondeur == "carte") {
  83. node.classList.add("collapsed");
  84. }
  85. }
  86. });
  87. if (direction == "next" && currentIndex + 2 <= modeAmount) {
  88. modes[currentIndex + 1].classList.add('active');
  89. changeColors(1);
  90. } else if (direction == "prev" && currentIndex - 1 >= 0) {
  91. modes[currentIndex - 1].classList.add('active');
  92. changeColors(-1);
  93. } else if (direction == "next" && currentIndex + 1 == modeAmount) {
  94. modes[0].classList.add('active');
  95. changeColors(-modeAmount + 1);
  96. } else if (direction == "prev" && currentIndex == 0) {
  97. modes[modeAmount - 1].classList.add('active');
  98. changeColors(modeAmount - 1);
  99. }
  100. }
  101. // COULEURS DE FOND
  102. // basé sur https://codepen.io/ThreePixDroid/pen/MWeomWp
  103. // ajouter un grain fixe : cf
  104. // https://codepen.io/zadvorsky/pen/PwyoMm
  105. class GradientAnimation {
  106. constructor() {
  107. this.cnv = document.querySelector('canvas');
  108. this.ctx = this.cnv.getContext('2d');
  109. this.circlesNum = 5;
  110. this.minRadius = 800;
  111. this.maxRadius = 800;
  112. this.speed = 0.005;
  113. (window.onresize = () => {
  114. this.setCanvasSize();
  115. this.createCircles();
  116. })();
  117. this.drawAnimation();
  118. }
  119. setCanvasSize() {
  120. this.w = this.cnv.width = innerWidth * devicePixelRatio;
  121. this.h = this.cnv.height = innerHeight * devicePixelRatio;
  122. this.ctx.scale(devicePixelRatio, devicePixelRatio);
  123. }
  124. createCircles() {
  125. this.circles = [];
  126. for (let i = 0; i < this.circlesNum; i++) {
  127. this.circles.push(new Circle(this.w, this.h, this.minRadius, this.maxRadius));
  128. }
  129. }
  130. drawCircles() {
  131. this.circles.forEach(circle => circle.draw(this.ctx, this.speed));
  132. }
  133. drawBackground() {
  134. this.ctx.fillStyle = `hsl(${colors.bg.h} ${colors.bg.s}% ${colors.bg.l}%)`;
  135. this.ctx.fillRect(0, 0, this.w, this.h);
  136. }
  137. drawAnimation() {
  138. this.drawBackground();
  139. this.drawCircles();
  140. window.requestAnimationFrame(() => this.drawAnimation());
  141. }
  142. }
  143. class Circle {
  144. constructor(w, h, minR, maxR) {
  145. this.x = Math.random() * w;
  146. this.y = Math.random() * h;
  147. this.angle = Math.random() * Math.PI * 2;
  148. this.radius = Math.random() * (maxR - minR) + minR;
  149. this.firstColor = `hsla(${Math.random() * 360}, 100%, 50%, 0.5)`;
  150. this.secondColor = `hsla(${Math.random() * 360}, 100%, 50%, 0)`;
  151. }
  152. draw(ctx, speed) {
  153. this.angle += speed;
  154. const x = this.x + Math.cos(this.angle) * 200;
  155. const y = this.y + Math.sin(this.angle) * 200;
  156. const gradient = ctx.createRadialGradient(x, y, 0, x, y, this.radius);
  157. gradient.addColorStop(0, this.firstColor);
  158. gradient.addColorStop(1, this.secondColor);
  159. ctx.globalCompositionOperation = `overlay`;
  160. ctx.fillStyle = gradient;
  161. ctx.beginPath();
  162. ctx.arc(x, y, this.radius, 0, Math.PI * 2);
  163. ctx.fill();
  164. }
  165. }
  166. window.onload = () => {
  167. new GradientAnimation();
  168. }