-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTheUselessApp.html
70 lines (68 loc) · 2.72 KB
/
TheUselessApp.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
<!DOCTYPE html>
<html>
<head>
<title>The Useless App</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" rel="stylesheet" media="screen">
<script src="https://cdnjs.cloudflare.com/ajax/libs/bodymovin/5.6.4/lottie_svg.min.js"></script>
<script type="text/javascript">
/* Play an animation on each click */
window.onload = function() {
let iconSkipForward = document.querySelector('.bodymovinanim');
let animationSkipForward = bodymovin.loadAnimation({
container: iconSkipForward,
renderer: 'svg',
loop: false,
autoplay: false,
path: "https://assets5.lottiefiles.com/packages/lf20_X7fC2V.json"
});
animationSkipForward.playSegments([0,60], false);
iconSkipForward.addEventListener('click', function() {
animationSkipForward.playSegments([0,60], false);
});
};
</script>
<style type="text/css">
.bodymovinanim {
width: 90%;
max-width: 300px;
margin-top: 2px;
cursor: pointer;
display: flex;
flex-direction: column;
text-align: center;
align-items: center;
}
p {
font-size: 12px;
text-transform: uppercase;
opacity: 0.6;
letter-spacing: 2px;
}
</style>
</head>
<body>
<br/>
<div>
<h1 style="font-weight: 150;text-align: center;font-family: 'Roboto', sans-serif;"><b>The Useless App</b></h1>
<h4 style="font-weight: 100;text-align: center;font-family: 'Roboto', sans-serif;">A Useless App which has a function but its direct purpose is unknown.</h4>
</div>
<br/>
<p style="font-weight: 150;text-align: center;font-family: 'Roboto', sans-serif;">Click Me!!!</p>
<p style="font-weight: 150;text-align: center;font-family: 'Roboto', sans-serif;">ON triggers OFF!!!!</p>
<center><div class="bodymovinanim"></div></center>
<br/>
<div>
<h4 style="font-weight: 100;text-align: center;font-family: 'Roboto', sans-serif;">Inspired from</h4>
<h4 style="font-weight: 100;text-align: center;font-family: 'Roboto', sans-serif;">The Useless Machine</h4>
</div>
<br/>
<hr/>
<br/>
<h6 style="text-align: center;font-family: 'Roboto', sans-serif;"><b> PRIVACY POLICY </b> : We don't store your data, period.</h6>
<h6 style="text-align: center;font-family: 'Roboto', sans-serif;">Made with ❤️ in India!</h6>
<h6 style="text-align: center;font-family: 'Roboto', sans-serif;"><a href="index.html">vickysam</a></h6>
</body>
</html>