-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregions.html
84 lines (73 loc) · 2.56 KB
/
regions.html
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wagon</title>
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="favicon.png" type="image/png">
</head>
<body>
<nav>
<div>
<a href="/"><img src="logo.svg" alt=""></a>
</div>
<div>
<a class="secondary" href="https://testflight.apple.com/join/M2xoL0bC">
<span>Faire de la publicité sur Wagon</span>
</a>
<a class="primary" href="https://testflight.apple.com/join/M2xoL0bC">
<span>Obtenir</span>
</a>
</div>
</nav>
<main>
<section>
<h1>
Découvrez où Wagon est disponible dans le monde
</h1>
<p>
Nous voulons rendre Wagon accessible partout pour simplifier l’usage des transports en commun au
quotidien.
</p>
<ul class="regions">
<li>
Chypre <span>- EMEL (Limassol), OSYPA (Pafos), OSEA (Famagusta), NPT (Nicosia) LPT (Larnaca),
Intercity, Pame Express (Park and Ride) et Kapnos Airport Shuttle.</span>
</li>
<li>
Toulouse <span>- Tisséo</span>
</li>
<li>
Nice <span>- Lignes d’Azur</span>
</li>
<li>
Paris <span>- Île-de-France Mobilités</span>
</li>
</ul>
</section>
</main>
<img class="map" src="map.svg" alt="">
<footer class="footer bottom">
<span>Développé par <strong>Arno Cellarier</strong> et <strong>Matthieu Cloët</strong>. Interface conçue
par
<strong>Rémy Cellarier</strong>.
Tests et aide région
Île-de-France: <strong>Léon Edmee</strong>. *La fonctionnalité de planification de trajets est
encore en
développement et sera disponible bientôt via une mise à jour logicielle.</span>
</footer>
<script>
const imagesFolder = 'screens/';
const imagesCount = 13;
let currentImage = 1;
setInterval(() => {
currentImage++;
if (currentImage > imagesCount) {
currentImage = 1;
}
document.querySelector('main>img').src = imagesFolder + currentImage + '.png';
}, 1300);
</script>
</body>
</html>