-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
205 lines (203 loc) · 4.91 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
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
<html>
<head>
<title>MAMPUS by Mobiz</title>
<script src="fontawesome.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
font-family: Inter;
user-select: none;
}
input[type='file'] {
font-size: 0;
padding: 0px;
}
.div {
text-align: left;
background: none;
padding: 0;
height: 23px;
}
#samplevid {
width: 87.5%;
padding: 10px;
}
::file-selector-button {
color: white;
font-size: initial;
font-family: Inter;
background: none;
border: none;
float: left;
margin: 0;
padding: 0;
}
.menubutton {
font-size: inter;
color: white;
background: none;
border: none;
height: 23px;
border-radius: 0px;
float: left;
width: 125px;
padding: 0;
}
.menubutton:hover {
background-color: #1d1d1d;
}
.content {
width: 80vw;
height: 427px;
float: right;
background: white;
}
.presetmedia {
width: 20vw;
height: 100vh;
position:fixed!important;
z-index:2;
float: left;
overflow: auto;
background-color: #7c4444;
backdrop-filter: blur(10px);
color: white;
}
.presetmedia button {
border: none;
background: none;
color: white;
padding: 5px;
text-align: left;
width: 100%;
transition: all 0.2s ease;
margin-bottom: 5px;
font-size: 16px;
}
.presetmedia button:hover {
border: none;
background: #4d4d4d90;
color: white;
padding: 5px;
text-align: left;
border-radius: 5px;
transition: all 0.2s ease;
}
.presetmedia button:active {
border: none;
background: #4d4d4d;
color: white;
padding: 5px;
text-align: left;
border-radius: 5px;
transition: all 0.2s ease;
}
input {
background: none;
border:none;
border-radius: 2.5px;
padding: 2px;
transition: all 0.2s ease;
color: white;
}
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
::-webkit-scrollbar-button {
width: 4px;
height: 4px;
}
::-webkit-scrollbar-thumb {
background: #e1e1e1;
border: 0px none #ffffff;
border-radius: 41px;
}
::-webkit-scrollbar-thumb:hover {
background: #ffffff;
}
::-webkit-scrollbar-thumb:active {
background: #ffffff;
}
::-webkit-scrollbar-track {
background: #1d1d1d;
border: 0px none #ffffff;
border-radius: 50px;
}
::-webkit-scrollbar-track:hover {
background: #1d1d1d;
}
::-webkit-scrollbar-track:active {
background: #1d1d1d;
}
::-webkit-scrollbar-corner {
background: transparent;
}
summary {
font-weight: bold;
}
</style>
</head>
<body id="body">
<section>
<div class="div">
<div class="content">
<video autoplay src="" id="mediavid" controls style=" border: black solid 0px; width: 100%; height: 100vh; background-color: black;"></video></div>
<div class="presetmedia">
<div id="samplevid">
<h1>MAMP Ultimate Software</h1>
© MoBiZ 2023
<br>
<br>
<details open>
<summary style="margin-bottom: 5px;"><i class="fa-solid fa-film"></i> My Medias</summary>
<button id="left">
<input type="file" accept="video/*" onchange="custom_video(event)">
</button><br>
<button onclick="loadlink()" id="left">Stream</button><br>
</details>
<details>
<summary style="margin-bottom: 5px;"><i class="fa-solid fa-tower-broadcast"></i> Watch Online</summary>
<button onclick="vid5()">Lookeloo</button><br>
<button onclick="vid6()">YouSul</button><br>
<button onclick="vid7()">ABflix</button><br>
</details>
</div>
</body>
<script>
function vid1() {
var video = document.getElementById("mediavid"); video.src = ("../medias/Morshu.mp4");
}
function vid2() {
var video = document.getElementById("mediavid"); video.src = ("../medias/sigma.mp3");
}
function vid3() {
var video = document.getElementById("mediavid"); video.src = ("../medias/bdp.mp4");
}
function vid4() {
var video = document.getElementById("mediavid"); video.src = ("../medias/memeforest.wav");
}
function vid5() {
window.location.replace("https://lookeeloo-vid.web.app/");
}
function vid6() {
window.location.replace("https://zeanfender11.wixsite.com/yousul");
}
function vid7() {
window.location.replace("https://ABflix-beta.web.app");
}
function custom_video(event) {
var reader = new FileReader();
reader.onload = function() {
var video = document.getElementById("mediavid"); video.src = reader.result;
}
reader.readAsDataURL(event.target.files[0]);
}
function loadlink() {
link = prompt("Enter Video Link");
document.getElementById("mediavid").src = link;
}
</script>
</html>