-
Notifications
You must be signed in to change notification settings - Fork 0
/
twitter_test.html
65 lines (56 loc) · 1.13 KB
/
twitter_test.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
<html>
<head>
<meta charset="utf-8"/>
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js'></script>
<script type="text/javascript" src="yajqtwitter.js" ></script>
<style>
#twitterFeed {
display:block;
background-color: #D6D6D6;
border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
padding: 20px 1;
}
.posts {
display:block;
background: white;
border-radius: 6px;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
}
.post {
display:block;
border-bottom: 1px dotted #ddd;
padding: 8px 6px;
}
.post p {
display: inline;
}
.post:last-child {
border-bottom-width: 0
}
.post a {
color: #B3B3B3;
text-decoration: none;
}
.post a:hover {
text-decoration: underline;
}
.postDate {
font-size: 66%;
}
.postDate a {
color: #B3B3B3;
}
</style>
<script type="text/javascript">
$(document).ready(function(){
$('#twitterFeed').yajqtwitter();
});
</script>
</head>
<body>
<div id="twitterFeed"></div>
</body>
</html>