-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex_1.html
More file actions
93 lines (83 loc) · 2.31 KB
/
Index_1.html
File metadata and controls
93 lines (83 loc) · 2.31 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<html>
<head>
<style>
#container {
width: 600px;
height: 400px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
position: relative;
margin-top:-300px;
}
.circle {
border-radius: 50%;
background-color: deepskyblue;
width: 150px;
height: 150px;
position: absolute;
opacity: 0;
animation: scaleIn 4s infinite cubic-bezier(.36, .11, .89, .32);
}
.item {
z-index: 100;
padding: 5px;
}
.item img {
width: 100px;
}
@keyframes scaleIn {
from {
transform: scale(.5, .5);
opacity: .5;
}
to {
transform: scale(2.5, 2.5);
opacity: 0;
}
}
</style>
<script>
function fun(ev)
{
a=ev.currentTime;
if(a>50)
{
x=document.getElementById("aa");
x.style.visibility="visible";
}
}
</script>
</head>
<body bgcolor="#990000" background="../../Images/Gallary_1/15.jpg" style="background-repeat:no-repeat; background-size:cover">
<center>
<img src="../../Images/Gallary_1/Skool.jpg" width="50%" style="border-radius:40%; border-color:white; border-style:double">
<br><br>
<br>
<video controls muted autoplay width=1100 height="600" style="position:relative;top:-50px" ontimeupdate="fun(this)">
<source src="../../Videos/Entry_Vid1.mp4" type="video/mp4">
</video>
<!--<embed src="../../Videos/Entry_Vid.mp4" style="width:1055px; height:593px; position:relative;top:-50px"></embed>-->
<div style="visibility:hidden; position:relative;top:-200px" id="aa">
<div id="outerContainer" >
<div id="container">
<div class="item">
<a href="Index_2.html" target="new" >
<h5 style="font-size:24px; font-weight:bold; color:white">Enter Lobby</h5>
</a>
</div>
<div class="circle" style="animation-delay: 0s"></div>
<div class="circle" style="animation-delay: 1s"></div>
<div class="circle" style="animation-delay: 2s"></div>
<div class="circle" style="animation-delay: 3s"></div>
</div>
</div>
<!--<div>
<a href="Index_2.html">
<img src="../../Images/Gallary_1/Lobby.jfif" style="border:thick; border-radius:50%; position:relative; top:-220px; right:635px" width="80" height="80" align="right">
</a>
</div>-->
</center>
</body>
</html>