-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfembed.html
56 lines (51 loc) · 1.35 KB
/
fembed.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
<head>
<meta charset="utf-8">
<link rel="icon" href="https://ninjastream.to/favicon.ico" type="image/x-icon"/>
<link rel="shortcut icon" href="https://ninjastream.to/favicon.ico" type="image/x-icon"/>
<script>
function loading(){
var url = new URL(window.location);
var id = url.searchParams.get("id");
var player = document.getElementById("videoplayer");
var downloads = document.getElementById("videodownload");
document.title = id+" - dg"
//downloads.action = "https://ninjastream.to/download/"+id
player.src = id
};
</script>
<style>
.download {
background-color: #4CAF50;
border: none;
color: white;
padding: 15px 284px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
cursor: pointer;
}
.new {
background-color: #ff4d00;
border: none;
color: white;
padding: 15px 280px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
cursor: pointer;
}
body {
background-color: #181a1b;
color: white;
}
</style>
<center>
<iframe id="videoplayer" src="https://femax20.com/v/CHANGER" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" allowfullscreen width="100%" height="100%" sandbox="allow-scripts allow-same-origin" ></iframe>
<title>Ninjastream.io Player</title>
<br>
</head>
<body onload="loading()">
</body>
</center>