-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
124 lines (112 loc) · 3.25 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
<html lang="en">
<head>
<style>
html {
overflow: hidden;
}
body{
margin: 0;
padding: 0;
background: none;
}
img{
position: absolute;
left: 250%;
height: 228px;
width: 1128px;
}
.images
{
transform: scale(0.25);
margin-top: 5%;
}
</style>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Socail Alert</title>
</head>
<body>
<div class="images">
<img src="https://hyflicker.weebly.com/uploads/1/0/1/0/101010556/discord_orig.png" alt="" class="test1" id="discordImg">
<img src="https://hyflicker.weebly.com/uploads/1/0/1/0/101010556/twitch_orig.png" alt="" class="test1" id="twitchImg">
<img src="https://hyflicker.weebly.com/uploads/1/0/1/0/101010556/twitter_orig.png" alt="" class="test1" id="twitterImg">
<img src="https://hyflicker.weebly.com/uploads/1/0/1/0/101010556/youtube_orig.png" alt="" class="test1" id="youtubeImg">
</div>
</body>
<script>
var discord = document.getElementById('discordImg');
var twitch = document.getElementById('twitchImg');
var twitter = document.getElementById('twitterImg');
var youtube = document.getElementById('youtubeImg');
function socialDiscord1() {
setTimeout(function(){
discord.style.transition = "all 1s";
discord.style.transform = "translateX(-1150px)";
}, 5000);
console.log("1")
}
function socialDiscord2() {
setTimeout(function(){
discord.style.transition = "all 1s";
discord.style.transform = "translateX(0px)";
}, 16000);
console.log("2")
}
function socialTwitch1() {
setTimeout(function(){
twitch.style.transition = "all 1s";
twitch.style.transform = "translateX(-1150px)";
}, 120000);
console.log("3")
}
function socialTwitch2() {
setTimeout(function(){
twitch.style.transition = "all 1s";
twitch.style.transform = "translateX(0px)";
}, 126000);
console.log("4")
}
function socialTwitter1() {
setTimeout(function(){
twitter.style.transition = "all 1s";
twitter.style.transform = "translateX(-1150px";
}, 240000);
console.log("5")
}
function socialTwitter2() {
setTimeout(function(){
twitter.style.transition = "all 1s";
twitter.style.transform = "translateX(0px)";
}, 246000);
console.log("6")
}
function socialYoutube1() {
setTimeout(function(){
youtube.style.transition = "all 1s";
youtube.style.transform = "translateX(-1150px)";
}, 360000);
console.log("7")
}
function socialYoutube2() {
setTimeout(function(){
youtube.style.transition = "all 1s";
youtube.style.transform = "translateX(0px)";
}, 366000);
console.log("8")
}
function reload() {
setTimeout(function(){
location.reload();
}, 480000);
}
socialDiscord1();
socialDiscord2();
socialTwitch1();
socialTwitch2();
socialTwitter1();
socialTwitter2();
socialYoutube1();
socialYoutube2();
window.onload = reload;
</script>
</html>