-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtmp.html
35 lines (27 loc) · 959 Bytes
/
tmp.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
---
title: Accueil
description: "Site pour découvrir l'écriture inclusive de façon ludique : exemples, quiz, FAQ et astuces d'écriture."
layout: default
permalink: /
---
<div class="textBlock">
<div class="loading">
<img src="{{ site.basepath }}images/loading-background.png" alt="Chargement background" /><img src="{{ site.basepath }}images/loading-foreground.png" alt="Chargement foreground" />
</div>
<p class="loadingMsg">Bientôt disponible...</p>
<script>
function animLeft()
{
$(".loading img:first-child").css({'transform': 'translate(10em)'});
$(".loading img:last-child").css({'transform': 'translate(10em) rotate(40deg)'});
window.setTimeout(animRight, 2000);
}
function animRight()
{
$(".loading img:first-child").css({'transform': 'translate(-10em)'});
$(".loading img:last-child").css({'transform': 'translate(-10em) rotate(-40deg)'});
window.setTimeout(animLeft, 2000);
}
window.setTimeout(animLeft, 1000);
</script>
</div>