-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathacts.php
More file actions
69 lines (60 loc) · 2.75 KB
/
acts.php
File metadata and controls
69 lines (60 loc) · 2.75 KB
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
<?php
$current = 'acts';
require 'inc/header.php';
?>
<div class="container container_hide">
<article class="first">
<div class="link_container"><a class="trailer_infos" href="insertCoin.php">Trailer & infos</a></div>
<div class="description"><p>Insert coin<span class="spectacle_name">Teeterboard act</span><br />
<small>Insert Coin is inspired by a mythical object: the pinball.<br />
Speed, adrenalin and derision... because above all, it's a game!</small></p></div>
</article>
<article class="second">
<div class="link_container"><a class="trailer_infos" href="extremites.php">Trailer & infos</a></div>
<div class="description"><p>Extrêmités<span class="spectacle_name">Balancing act</span><br />
<small>Extremities, it's a performance of balance on plank and gas bottle. To make it short:<br />
Bim, Bam, Boom are maintaining balance.<br />
Bim fall. Who is left?<br />
No one! Because if Bim fall, all fall away!</small></p></div>
</article>
<article class="third">
<div class="link_container"><a href="wildFire.php">Pictures & infos</a></div>
<div class="description"><p>Wild fire<span class="spectacle_name">Fire performance</span><br />
<small>In the total darkness : torches, devil stick and pois, everything ignites, sparkles and spins around the stage.</small></p></div>
</article>
<article class="four">
<div class="link_container"><a href="robotLightShow.php">Pictures & infos</a></div>
<div class="description"><p>Robot light show<span class="spectacle_name">Light & tech show</span><br />
<small>Lights, laser beams, led stripes, metallic outfits, technology and special effects are put at the service of the fantastic to explore the humanoid robots of tomorrow.</small></p></div>
</article>
</div>
</div>
<footer></footer>
<script>
$(document).ready(function(){
$("div.rideau_gauche").toggleClass('rideau_gauche_extends');
$("div.rideau_droit").toggleClass('rideau_droit_extends');
$("div.container").removeClass('container_hide');
$(".rideau_gauche,.rideau_droit").on("click", function(){
$(".rideau_gauche").toggleClass('rideau_gauche_extends');
$(".rideau_droit").toggleClass('rideau_droit_extends');
});
$('div.description').hover(
function() {
$(this).toggleClass('show-description');
}, function() {
$(this).toggleClass('show-description');
}
);
$('div.link_container a').click(function(event) {
event.preventDefault();
var href = this.href;
$("div.rideau_gauche").toggleClass('rideau_gauche_extends');
$("div.rideau_droit").toggleClass('rideau_droit_extends').delay(700).queue(function() {
window.location.href = href;
});
});
});
</script>
</body>
</html>