-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (71 loc) · 2.86 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
<!doctype html>
<html>
<title>Clouds</title>
<style>
html, body, .container{
width: 100%;
height: 100%;
min-width: 500px;
min-height: 500px;
margin: 0;
padding: 0;
}
.container{
position: absolute;
top: 0;
left: 0;
background-color: #007ced;
background: linear-gradient(to bottom, #007ced 1%,#cce7ff 100%);
overflow: hidden;
}
#cloud-intro{
position: relative;
height: 100%;
background: url(https://static.radulescu.me/examples/clouds/clouds1000.png);
background: url(https://static.radulescu.me/examples/clouds/clouds1000.png) 0 200px,
url(https://static.radulescu.me/examples/clouds/clouds1200_1.png) 0 300px,
url(https://static.radulescu.me/examples/clouds/clouds1000_blur3.png) 100px 250px;
animation: wind 20s linear infinite;
}
@keyframes wind{
0% {
background-position: 0 200px, 0 300px, 100px 250px;
}
100% {
background-position: 1000px 200px, 1200px 300px, 1100px 250px;
}
}
.myContent {
height: 100vh;
position: absolute;
top: 0;
left: 0;
}
</style>
<body>
<div class="container">
<div id="cloud-intro"></div>
</div>
<div class="myContent">
<!--<a href="rain">RAIN</a>-->
<div><img src="rain/assets/magiccards.gif"/></div>
<h1>Rains playlist</h1>
<iframe width="560" height="315" src="https://www.youtube.com/embed/videoseries?list=PLPey6CfMaa7QVZwR9QtDLIeaoARAPE9on" frameborder="0" allowfullscreen></iframe>
<h1>Google Santa Tracker</h1>
<iframe width="560" height="315" src="https://www.youtube.com/embed/videoseries?list=PL590L5WQmH8ftab8SEtrKnz9f6iGQIVfD" frameborder="0" allowfullscreen></iframe>
<h1>Om Nom</h1>
<iframe width="560" height="315" src="https://www.youtube.com/embed/videoseries?list=PLVxGcyI6KPti53ykxmD3_3u0-VaxWvdQd" frameborder="0" allowfullscreen></iframe>
<iframe width="560" height="315" src="https://www.youtube.com/embed/videoseries?list=PLVxGcyI6KPtjkwCTJCK3F1Z246AJFFC2d" frameborder="0" allowfullscreen></iframe>
<iframe width="560" height="315" src="https://www.youtube.com/embed/videoseries?list=PLVxGcyI6KPtiemYXSxuR0xJa_8KsgxuHl" frameborder="0" allowfullscreen></iframe>
<h1>LEGO</h1>
<p>leggo</p>
<h1><a href="https://codepen.io/rachsmith/full/oGEMbz/" target="_blank">TYPE LETTERS</a></h1>
<h1>games</h1>
<p><a href="http://disneyjunior.disney.ph/winnie-the-pooh-honey-harvest#tE8fyP73lDPz0dTS.97" target="_blank">Honey Harvest</a></p>
<p><a href="http://lol.disney.com/games/winnie-the-pooh-honey-harvest" target="_blank">Honey Harvest - Link2</a></p>
<p><a href="https://www.google.com/doodles/basketball-2012" target="_blank">Google Doodle - Basketball</a></p>
<p><a href="https://alexanderperrin.com.au/paper/shorttrip" target="_blank">Short Trip</a></p>
<p><a href="http://www.bbc.com/future/bespoke/20140304-how-big-is-space-interactive/" target="_blank">BBC - How big is Space?</a></p>
</div>
</body>
</html>