-
Notifications
You must be signed in to change notification settings - Fork 0
/
landingpage.php
78 lines (68 loc) · 3.11 KB
/
landingpage.php
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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>Landing Page</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="css/style_landing.css">
<script>
// 2. This code loads the IFrame Player API code asynchronously.
var tag = document.createElement('script');
tag.src = "https://www.youtube.com/iframe_api";
var firstScriptTag = document.getElementsByTagName('script')[0];
firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);
// 3. This function creates an <iframe> (and YouTube player)
// after the API code downloads.
var player;
function onYouTubeIframeAPIReady() {
player = new YT.Player('player', {
height: '100%',
width: '100%',
playerVars: {
autoplay: 1,
loop: 1,
controls: 0,
showinfo: 0,
autohide:0,
modestbranding: 1,
vq: 'hd1080',
playlist: '42silsqv1co'},
videoId: '42silsqv1co',
events: {
'onReady': onPlayerReady,
'onStateChange': onPlayerStateChange
}
});
}
// 4. The API will call this function when the video player is ready.
function onPlayerReady(event) {
event.target.playVideo();
player.mute();
}
var done = false;
function onPlayerStateChange(event) {
}
function stopVideo() {
player.stopVideo();
}
</script>
</head>
<body>
<div id="player"><iframe src="https://www.youtube.com/embed/42silsqv1co?rel=0&controls=0&showinfo=0&loop=1" width="100%" height="100%" frameborder="0" allowfullscreen="1"></iframe></div>
<div class="ecran-vd">
<img src="img//photo_site/logo-final.png" alt=" ">
<div class="slogan">Faites votre cinéma</div>
<a style="background:#6e1a2d;padding:15px;color:white; font-size: 1rem;font-family: 'Raleway', sans-serif, bold; top : 67vh;
left: 42vw;position: absolute;" href="index.php">Commencer a apprendre</a>
</div>
<div class="main">
<img src="img/photo_site/icone-camera.png" alt=" " class="floatleft">
<p>On sait depuis longtemps que travailler avec du texte lisible et contenant du sens est source de distractions, et empêche de se concentrer sur la mise en page elle-même. </p>
<img src="img/photo_site/icone-camera.png" alt=" " class="floatright">
<p>On sait depuis longtemps que travailler avec du texte lisible et contenant du sens est source de distractions, et empêche de se concentrer sur la mise en page elle-même. </p>
<img src="img/photo_site/icone-camera.png" alt=" " class="floatleft">
<p>On sait depuis longtemps que travailler avec du texte lisible et contenant du sens est source de distractions, et empêche de se concentrer sur la mise en page elle-même. </p>
</div>
<?php include('footer.php'); ?>
</body>
</html>