-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathinter.html
65 lines (65 loc) · 1.43 KB
/
inter.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
<!DOCTYPE html>
<meta charset="utf-8">
<title>Wait for it…</title>
<meta http-equiv=refresh content="3; URL=https://addons.opera.com/en/extensions/details/worlds-most-useless-extension/">
<style>
html, body {
overflow:hidden;
background:#2B303B;
}
/* Button */
.button {
position:absolute;
top:45%;
left:50%;
margin:-100px 0 0 -275px;
padding:0 0 0 60px;
width:550px;
height:200px;
border:10px solid #323A43;
border-radius:40px;
background:#D44 no-repeat;
background:
url(cross.png) 80px 50% no-repeat,
linear-gradient(#D44, #992F2F) no-repeat;
color:#FFF;
font:80px/1 sans-serif;
}
.loaded .button {
-webkit-animation:press 0.5s 0.6s steps(1) forwards;
}
@-webkit-keyframes press {
to {
margin-top:-90px;
background:#181B21 url(spinner.gif) 80px 50% no-repeat;
}
}
/* Hand */
.hand {
position:absolute;
top:120%;
left:50%;
margin:-40px 0 0 -85px;
width:170px;
height:220px;
}
.loaded .hand {
-webkit-animation:move 1.5s ease-out forwards;
}
@-webkit-keyframes move {
0 { top:120% }
55% { top:45% }
85% { top:45% }
100% { top:62% }
}
</style>
<button class="button">Uninstall</button>
<img class="hand" src="hand.gif">
<script>
window.addEventListener('load', function (e) {
document.body.className = 'loaded';
}, false);
setTimeout(function() {
location.href = 'https://addons.opera.com/en/extensions/details/worlds-most-useless-extension/';
}, 3000);
</script>