-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (45 loc) · 1.59 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<!--
AUTHOR : ABDUL WAHID NAAFI
INSTAGRAM : @IAM_NAAFI
INSTAGRAM : @WEB.IO
-->
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
<body>
<div class="maincont">
<div>
<div id="closebutton" onclick="closee()"><i class="material-icons">close</i></div>
<div id="expcard" class="tofullpagecard" onclick="expand();">
<div id="vidtitle">Starlight<div id="athr">Jai Wolf</div></div>
<div id="playbutton"><i class="material-icons">play_circle_filled</i></div>
<iframe id="emb" src="https://www.youtube.com/embed/Z9VoDwy-3Lc" frameborder="0" allowfullscreen></iframe>
</div>
</div>
</div>
<script type="text/javascript">
// AUTHOR : ABDUL WAHID NAAFI
// INSTAGRAM : @IAM_NAAFI
// INSTAGRAM : @WEB.IO
function expand() {
document.getElementById('expcard').className="none";
document.getElementById('emb').style.display="block";
document.getElementById('vidtitle').style.display="none";
document.getElementById('athr').style.display="none";
document.getElementById('playbutton').style.display="none";
document.getElementById('closebutton').style.display="block";
}
function closee() {
document.getElementById('expcard').className="tofullpagecard";
document.getElementById('emb').style.display="none";
document.getElementById('vidtitle').style.display="block";
document.getElementById('athr').style.display="block";
document.getElementById('playbutton').style.display="block";
document.getElementById('closebutton').style.display="none";
}
</script>
</body>
</html>