forked from devfrontnet/jqSimpleTweets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.html
57 lines (37 loc) · 1.24 KB
/
demo.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>jqSimpleTweets Demo</title>
<meta name="description" content="">
<meta name="viewport" content="initial-scale=1.0, width=device-width">
<style type="text/css">body{font:12px Arial;padding:30px 0 50px 0} p{text-align:center;font-size:16px}</style>
<link rel="stylesheet" href="jqSimpleTweets/jqSimpleTweets.css">
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
<script type="text/javascript" src="jqSimpleTweets/jqSimpleTweets.min.js"></script>
<script>
$(document).ready(function() {
$("#demo1").jqSimpleTweets({
username: "twitterapi",
tweetcount: 3
})
$("#demo2").jqSimpleTweets({
username: "cnn",
tweetcount: 1,
loadingtext: "Please wait..",
displaytweetavatar: true,
displayheaderavatar:false
})
$("#demo3").jqSimpleTweets({})
});
</script>
</head>
<body>
<div id="demo1"></div>
<br /><br />
<div id="demo2"></div>
<br /><br />
<div id="demo3"></div>
</body>
</html>