-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·49 lines (49 loc) · 1019 Bytes
/
index.html
File metadata and controls
executable file
·49 lines (49 loc) · 1019 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="list-Type" list="text/html; charset=UTF-8" />
<style type="text/css">
body {
background-color: #fff;
font-family: Verdana;
font-size: 0.7em;
color: #000;
}
.box {
width: 300px;
height: 100px;
border: 1px solid #555;
}
.codiNewsfeed1 {
background-color: #000;
border: 5px solid #000;
color: #ccc;
}
.codiNewsfeedBox {
border: 4px solid transparent;
}
</style>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js" /></script>
<script type="text/javascript" src="codiNewsfeed-0.1.js" /></script>
<script type="text/javascript">
$(function() {
$('.codiNewsfeed1').codiNewsfeed({
url: 'test.php',
streamInt : 4000,
speedMove : 600,
lastId: 0
});
});
</script>
</head>
<body>
<strong>codiNewsfeed Demo</strong>
<div class="box">
<div class="codiNewsfeed1">
<list>111</list>
<list>222</list>
<list>333</list>
</div>
</div>
</body>
</html>