-
Notifications
You must be signed in to change notification settings - Fork 2
/
latest models.html
129 lines (112 loc) · 2.16 KB
/
latest models.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
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
* {
box-sizing: border-box;
}
body {
background-color: black;
margin: 0;
font-family: Arial;
font-size: 17px;
}
#myVideo {
position: center;
right: 20;
bottom: 30;
min-width: 10%;
min-height: 10%;
}
.content {
position: fixed;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
color: #f1f1f1;
width: 100%;
padding: 20px;
}
#myBtn {
width: 200px;
font-size: 18px;
padding: 10px;
border: none;
background: #000;
color: #fff;
cursor: pointer;
}
#myBtn:hover {
background: #ddd;
color: black;
}
.topnav a.active {
background-color: #4CAF50;
color: white;
}
/* Style the header */
.header {
padding: 2px;
text-align: center;
background:white;
color:darkcyan ;
}
/* Increase the font size of the h1 element */
.header h1 {
font-size: 40px;
}
/* Style the top navigation bar */
.navbar {
overflow: hidden;
background-color: #333;
}
/* Style the navigation bar links */
.navbar a {
float: left;
display: block;
color: white;
text-align: center;
padding: 14px 20px;
text-decoration: none;
}
/* Right-aligned link */
.navbar a.right {
float: right;
}
/* Change color on hover */
.navbar a:hover {
background-color: #ddd;
color: black;
}
</style>
</head>
<body>
<div class="navbar">
<div class="topnav">
<a class="active" href="deepak.html"><i class="fa fa-fw fa-home"></i>HOME</a>
</div>
</div>
<video autoplay muted loop id="myVideo">
<source src="Brand New i Phone 12 pro available.mp4" type="video/mp4">
Your browser does not support HTML5 video.
</video>
<div class="content">
<h1>I phone 12 max pro </h1>
<p>I Phone 12 max pro with 64,64,32camera (px) 8gb ram 128 external 64internal with Qantuam highly procerr avilable on Electronicvilla.</p>
<button id="myBtn" onclick="myFunction()">Pause</button>
</div>
<script>
var video = document.getElementById("myVideo");
var btn = document.getElementById("myBtn");
function myFunction() {
if (video.paused) {
video.play();
btn.innerHTML = "Pause";
} else {
video.pause();
btn.innerHTML = "Play";
}
}
</script>
</body>
</html>