-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathe.html
112 lines (90 loc) · 3.44 KB
/
e.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Railin'</title>
<link rel="icon" type="image/png" href="./Assests/Imgs/Logo.png">
<link rel="stylesheet" type="text/css" href="./Assests/CSS/main.css">
<link rel="stylesheet" type="text/css" href="https://maxst.icons8.com/vue-static/landings/line-awesome/line-awesome/1.3.0/css/line-awesome.min.css">
</head>
<body class="default">
<div id="preroll"></div>
<script>
function getScript(src) {
var headElm = document.head || document.getElementsByTagName('head')[0];
var script = document.createElement("script");
var once = true;
script.async = "async";
script.type = "text/javascript";
script.charset = "UTF-8";
script.src = src;
script.onload = script.onreadystatechange = function() {
if (once && (!script.readyState || /loaded|complete/.test(script.readyState))) {
once = false;
script.onload = script.onreadystatechange = null;
console.log("okeey");
}
};
headElm.appendChild(script);
}
getScript("https://api.adinplay.com/libs/aiptag/pub/GDU/worm.ist/tag.min.js");
window.aiptag = window.aiptag || {cmd: []};
aiptag.cmd.display = aiptag.cmd.display || [];
aiptag.cmd.player = aiptag.cmd.player || [];
//CMP tool settings
aiptag.cmp = {
show: true,
position: "centered", //centered, bottom
button: true,
buttonText: "Privacy settings",
buttonPosition: "bottom-left" //bottom-left, bottom-right, top-left, top-right
}
aiptag.cmd.player.push(function() {
aiptag.adplayer = new aipPlayer({
AD_WIDTH: 960,
AD_HEIGHT: 540,
AD_DISPLAY: 'center', //default, fullscreen, center, fill
LOADING_TEXT: 'loading advertisement',
PREROLL_ELEM: function(){return document.getElementById('preroll')},
AIP_COMPLETE: function (evt){
//skip_play();
},
AIP_REMOVE: function () {
// Here it's safe to remove the PREROLL_ELEM from the page if you want. But it's not recommend.
}
});
});
function show_preroll() {
if (typeof aiptag.adplayer !== 'undefined') {
aiptag.cmd.player.push(function() { aiptag.adplayer.startPreRoll(); });
} else {
//skip_play();
}
}
</script>
<nav class="Navigation">
<div class="Navigation-Container">
<a class="Navigation-Image" href="./"><img src="./Assests/Imgs/Logo.png"></img></a>
<ul>
<li class="Navigation-Button"><a href="./"><i class="las la-home"></i><p>Home</p></a></li>
<li class="Navigation-Button"><a href="./g.html"><i class="las la-file"></i><p>Projects</p></a></li>
<li class="Navigation-Button"><a href="./e.html"><i class="las la-hourglass-half"></i><p>Emulator</p></a></li>
<li class="Navigation-Button"><a href="./settings.html"><i class="las la-cog"></i><p>Settings</p></a></li>
<ul>
</div>
</nav>
<script type="text/javascript">
$(document).ready(function(){
$('.mobile-icon').click( function() {
$('nav ul').toggleClass("showing");
});
});
</script>
<style>
iframe { animation: zoom-in-fade 1s cubic-bezier(0.34, 1.56, 0.64, 1); border: 0; width: 100%; display: block; margin: auto; height: calc(100vh - 60px); }
</style>
<iframe src="./Assests/Others/Emulate/index.html"></iframe>
<script src="./Assests/JS/options.js"></script>
</body>
</html>