-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (47 loc) · 1.01 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
<html>
<head>
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script src="bbImgMarquee.jquery.js"></script>
<script>
$(document).ready(function() {
$('.marquee').bbImgMarquee();
});
</script>
<style type="text/css">
.marquee {
width: 200px;
height: 50px;
background-color: red;
}
.marquee__window {
width: 100px;
height: 50%;
/* per JS-Plugin setzen? */
overflow: hidden;
position: relative;
}
.marquee__plate {
background-color: green;
width: 400px;
/* per JS-Plugin setzen? */
left: 0;
position: absolute;
}
.marquee__plate p {
padding: 2px;
margin: 0;
display: inline-block;
}
</style>
</head>
<body>
<div class="marquee">
<div class="marquee__window">
<div class="marquee__plate">
<p>a</p><p>a</p><p>a</p><p>a</p><p>a</p><p>a</p><p>a</p><p>a</p><p>a</p><p>a</p><p>a</p><p>a</p><p>a</p><p>a</p><p>a</p><p>a</p><p>a</p><p>a</p><p>a</p>
</div>
</div>
<div class="marquee__next">more</div>
</div>
</body>
</html>