aboutsummaryrefslogtreecommitdiff
path: root/script-bon.js
blob: 54589681ecfda3e053fbddb74e883cf4a1480ae5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// dictionary to keep track of frame count for each animation
let frameCounts = {};

function animate(id, delay) {

  // get the container and frames for the amination
  const container = document.getElementById(id);
  const frames = container.children;

  // set up the frame counter
  frameCounts[id] = 0;

  // hide all frames except for the first
  frames[0].style.display = "flex";
  for (let i = 1; i < frames.length; i++) {
    frames[i].style.display = "none";
  }

  // start the animation
  const interval = setInterval(updateAnimation, delay, id, frames, frames.length);

}

function updateAnimation(id, frames, totalFrames) {

  // increment the frame counter for the given id
  frameCounts[id] = (frameCounts[id] + 1) % totalFrames;

  // show the next frame
  frames[frameCounts[id]].style.display = "flex";

  // hide the previous frame
  if (frameCounts[id] == 0) {
    frames[totalFrames - 1].style.display = "none";
  } else {
    frames[frameCounts[id] - 1].style.display = "none";
  }

}

animate("illustration-accueil", 500);
animate("rennes", 1000);
animate("orsay", 2000);
animate("parterre", 1500);