-
Notifications
You must be signed in to change notification settings - Fork 0
/
services.html
47 lines (42 loc) · 1.4 KB
/
services.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
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="mobstyle.css">
<link rel="stylesheet" href="bootstrap.min.css">
<script src="api.js" ></script>
<iframe id=tv src="https://mngz47.github.io/F-Snake/" style="width:100%;height:400px;border:2px solid yellow;" ></iframe>
<div class=row >
<div style="width:80%;float:left;" >
<a id=tv_title href=https://mngz47.github.io/F-Snake/ class="block" style="background-repeat:no-repeat;background-size:50px auto;background-postion:0 0;padding-left:55px;display:block;width:100%;" >F Snake</a>
</div>
<div style="width:18%;float:left;" >
<a href=# onclick="next();return false;" class="block" style="width:100%;" >Next</a>
</div>
</div>
<script>
var apps =
[
"https://mngz47.github.io/F-Snake/",
"https://mngz47.github.io/pamel_slots",
"https://mngz47.github.io/kasi_nametest/",
"https://mngz47.github.io/cv_engine",
"https://mngz47.github.io/business_plan_engine/",
"https://agg-v3.herokuapp.com/paraphrase"
];
var titles = [ "F Snake",
"Pamel Slots",
"Kasi Nametest",
"Temp22 CV/Resume Engine",
"Business Plan Engine",
"Paraphrase"
];
var index = 0;
function next(){
if(index<apps.length){
e('tv').src = apps[index];
e('tv_title').innerHTML = titles[index];
e('tv_title').href = apps[index];
index++;
}else{
index = 0;
}
}
</script>