background.js 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  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. function changeColors(diffAmount) {
  32. let originColor = colors.bg.h,
  33. currentColor = originColor,
  34. newColor = originColor + (360 / modeAmount) * diffAmount,
  35. transitionTime = 50,
  36. stepAmount = (newColor - originColor) / transitionTime;
  37. let animation = setInterval(() => {
  38. if (
  39. (diffAmount > 0 && currentColor < newColor) ||
  40. (diffAmount < 0 && currentColor > newColor)) {
  41. currentColor = currentColor + stepAmount;
  42. colors.bg.h = currentColor;
  43. } else {
  44. clearInterval(animation);
  45. }
  46. }, transitionTime);
  47. }
  48. function toggleProfondeur(el) {
  49. if (el.classList.contains("selected")) {
  50. return;
  51. } else {
  52. for (let sibling of el.parentNode.children) {
  53. sibling.classList.remove('selected');
  54. }
  55. }
  56. el.classList.add("selected");
  57. if(el.innerHTML == "L'atlas") {
  58. currentProfondeur = "atlas";
  59. document.querySelectorAll('.mode').forEach(function(node) {
  60. if(node.classList.contains("collapsed")) {
  61. node.classList.remove("collapsed");
  62. }
  63. });
  64. } else {
  65. currentProfondeur = "carte";
  66. document.querySelectorAll('.mode').forEach(function(node) {
  67. if(!node.classList.contains("active")) {
  68. node.classList.add("collapsed");
  69. }
  70. });
  71. }
  72. }
  73. function toggleMode(direction) {
  74. let modes = [];
  75. let currentIndex;
  76. document.querySelectorAll('.mode').forEach(function(node, index) {
  77. modes.push(node);
  78. if (node.classList.contains("active")) {
  79. currentIndex = index;
  80. node.classList.remove("active");
  81. if (currentProfondeur == "carte") {
  82. node.classList.add("collapsed");
  83. }
  84. }
  85. });
  86. if (direction == "next" && currentIndex + 2 <= modeAmount) {
  87. modes[currentIndex + 1].classList.add('active');
  88. changeColors(1);
  89. } else if (direction == "prev" && currentIndex - 1 >= 0) {
  90. modes[currentIndex - 1].classList.add('active');
  91. changeColors(-1);
  92. } else if (direction == "next" && currentIndex + 1 == modeAmount) {
  93. modes[0].classList.add('active');
  94. changeColors(-modeAmount + 1);
  95. } else if (direction == "prev" && currentIndex == 0) {
  96. modes[modeAmount - 1].classList.add('active');
  97. changeColors(modeAmount - 1);
  98. }
  99. }
  100. // DEUXIEME TEST DE COULEURS
  101. // basé sur https://codepen.io/ThreePixDroid/pen/MWeomWp
  102. // ajouter un grain fixe : cf
  103. // https://codepen.io/zadvorsky/pen/PwyoMm
  104. class GradientAnimation {
  105. constructor() {
  106. this.cnv = document.querySelector('canvas');
  107. this.ctx = this.cnv.getContext('2d');
  108. this.circlesNum = 5;
  109. this.minRadius = 800;
  110. this.maxRadius = 800;
  111. this.speed = 0.005;
  112. (window.onresize = () => {
  113. this.setCanvasSize();
  114. this.createCircles();
  115. })();
  116. this.drawAnimation();
  117. }
  118. setCanvasSize() {
  119. this.w = this.cnv.width = innerWidth * devicePixelRatio;
  120. this.h = this.cnv.height = innerHeight * devicePixelRatio;
  121. this.ctx.scale(devicePixelRatio, devicePixelRatio);
  122. }
  123. createCircles() {
  124. this.circles = [];
  125. for (let i = 0; i < this.circlesNum; i++) {
  126. this.circles.push(new Circle(this.w, this.h, this.minRadius, this.maxRadius));
  127. }
  128. }
  129. drawCircles() {
  130. this.circles.forEach(circle => circle.draw(this.ctx, this.speed));
  131. }
  132. drawBackground() {
  133. this.ctx.fillStyle = `hsl(${colors.bg.h} ${colors.bg.s}% ${colors.bg.l}%)`;
  134. this.ctx.fillRect(0, 0, this.w, this.h);
  135. }
  136. drawAnimation() {
  137. this.drawBackground();
  138. this.drawCircles();
  139. window.requestAnimationFrame(() => this.drawAnimation());
  140. }
  141. }
  142. class Circle {
  143. constructor(w, h, minR, maxR) {
  144. this.x = Math.random() * w;
  145. this.y = Math.random() * h;
  146. this.angle = Math.random() * Math.PI * 2;
  147. this.radius = Math.random() * (maxR - minR) + minR;
  148. this.firstColor = `hsla(${Math.random() * 360}, 100%, 50%, 0.5)`;
  149. this.secondColor = `hsla(${Math.random() * 360}, 100%, 50%, 0)`;
  150. }
  151. draw(ctx, speed) {
  152. this.angle += speed;
  153. const x = this.x + Math.cos(this.angle) * 200;
  154. const y = this.y + Math.sin(this.angle) * 200;
  155. const gradient = ctx.createRadialGradient(x, y, 0, x, y, this.radius);
  156. gradient.addColorStop(0, this.firstColor);
  157. gradient.addColorStop(1, this.secondColor);
  158. ctx.globalCompositionOperation = `overlay`;
  159. ctx.fillStyle = gradient;
  160. ctx.beginPath();
  161. ctx.arc(x, y, this.radius, 0, Math.PI * 2);
  162. ctx.fill();
  163. }
  164. }
  165. window.onload = () => {
  166. new GradientAnimation();
  167. }