-
Notifications
You must be signed in to change notification settings - Fork 0
/
billboard-cssani-step1.html
77 lines (71 loc) · 1.82 KB
/
billboard-cssani-step1.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>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf8" />
<meta name="author" content="handylearn" />
<title>Billboard with JQuery</title>
<style type="text/css">
* {margin: 0; padding: 0;}
#billboard{
width: 260px;
height: 264px;
background-image: url(Rahmen.jpg);
position: relative;
padding: 0px;
left: 50px;
}
#billboardwindow{
top: 31px;
left: 29px;
clip: rect(0px 200px 200px 0px);
position: absolute;
padding: 0px;
margin: 0px;
}
#billboard ul{
list-style: none;
padding: 0px;
margin: 0px;
}
#billboard ul li{
position: relative;
top: 0px;
border: none;
padding: 0px;
margin: 0px;
height: 200px;
animation-delay: 1s;
animation-duration: 3s;
animation-iteration-count: infinite;
animation-name: slideup;
}
#billboard img{
border: none;
}
@keyframes slideup {
from {
top: 0px;
}
to {
top: -200px;
}
}
</style>
</head>
<body>
<h1>Billboard with CSS-Animations</h1>
<p>Step 1: move two pictures</p>
<div id="billboard">
<div id="billboardwindow">
<ul>
<li><a href="../dbpublish/dbpublish.html"><img src="dbpublish.gif" width="200" height="200" alt="db publish grafic" /></a></li>
<li><a href="http://handylearn-projects.de/animals-de.html"><img src="lion.jpg" width="200" height="200" alt="lion" /></a></li>
<li><a href="http://handylearn-projects.de/wavelab-en.html"><img src="waves200.png" width="200" height="200" alt="cosmic waves" /></a></li>
<li><a href="../dbpublish/dbpublish.html"><img src="dbpublish.gif" width="200" height="200" alt="db publish grafic" /></a></li>
</ul>
</div>
</div>
<hr/>
<p>An example page from <a href="http://meier-online.com">meier-online.com</a></p>
</body>
</html>