-
Notifications
You must be signed in to change notification settings - Fork 0
/
billboard-cssani.html
100 lines (89 loc) · 2.03 KB
/
billboard-cssani.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
<!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: 9s;
animation-iteration-count: infinite;
animation-name: slideup;
}
#billboard img{
border: none;
}
@keyframes slideup {
from {
top: 0px;
}
16% {
top: -200px;
}
33% {
top: -200px;
}
50% {
top: -400px;
}
67% {
top: -400px;
}
84% {
top: -600px;
}
to {
top: -600px;
}
}
</style>
<script type="text/javascript">
/* <![CDATA[ */
/* ]]> */
</script>
</head>
<body>
<h1>Billboard with CSS-Animations</h1>
<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>