forked from pavelk2/social-feed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (48 loc) · 2.02 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>
<link href="css/jquery.socialfeed.css" rel="stylesheet" type="text/css">
<script src="http://kucherbaev.com/plugins/jquery/jquery-1.7.2.min.js"></script>
<script src="js/jquery.socialfeed.utility.js"></script>
<script src="js/jquery.socialfeed.js"></script>
<style>
/*This style is needed only for the plugin demo page. Do not use it in your projects*/
.credits{text-align:center;padding:20px;margin-top:10px;font-size:12px;}
body{ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
line-height: 20px;
color: #333333;
background-color: #ffffff;
text-align:center;
}
a{color: #0088cc;text-decoration: none;}
a:hover,a:focus {color: #005580;text-decoration: underline;}
.muted {color: #999999;}
.container {display:inline-block;width:600px;}
</style>
</head>
<body>
<div class="container">
<h3 class="muted">social - feed</h3>
<div class="social-feed-container">
</div>
<h6 class="credits muted"><a href="https://github.com/pavelk2/social-feed" target="_blank">Social-feed</a> jquery plugin, developed by <a target="_blank" href="http://kucherbaev.com">Pavel Kucherbaev</a></h6>
</div>
<script>
$(document).ready(function(){
$('.social-feed-container').socialfeed({
fb_username:'barack.obama',
fb_limit:2,
fb_token:'150849908413827|uYDHoXrvPZOLkQ-zRz_XoYdEeYM',
vk_username:36603,
vk_limit:10,
vk_source:'all',
tw_limit:2,
tw_username:'jack',
length:130,
show_media:true,
cookies:true
});
});
</script>
</body>
</html>