-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInfinite_Zoom.html
More file actions
41 lines (36 loc) · 905 Bytes
/
Infinite_Zoom.html
File metadata and controls
41 lines (36 loc) · 905 Bytes
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
//* Its not work on google chrome because i used there a embeded code of google phots
<html>
<head>
<title>
Infinite Zoom
</title>
<style>
#myVideo {
position: fixed;
margin:0;
top:0;
align: center
background-color:black;
hieght:100%
width:100%
}
.content {
position: fixed;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<div id="myVideo">
<video style="height:100%; width:100%" loop muted autoplay>
Your browser does not support the video tag.
<source src="https://lh3.googleusercontent.com/g1dAFVY9lGg2sjoSq1PU3LrnvDd1KFCZvwEh1Z2kOcPjYX_5csfEIFL0S4aDH_S1OyXIo8UpYDPDh5jQuar34mfSqbY_HDKtBSGXBp5kTFrSc0-4HoMQH73qtLIJLNDxsWekbvPtwA=m37" type="video/mp4">
</video>
</div>
<div id="content">
<p>Gokul Bhavesh Joshi Web Work</p>
<p style="color:white;background-color:gray">Wait a minute</p>
</div>
</body>
</html>