-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample.html
66 lines (60 loc) · 2.43 KB
/
sample.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
66
<!DOCTYPE html>
<html>
<head>
<title>jquery-reFolio</title>
<link rel=stylesheet href="refolio.min.css">
<script src="./lib/jquery.1.9.0.js"></script>
<script src="./refolio.min.js"></script>
</head>
<body>
<script type="text/javascript">
$(document).ready(function ()
{
var portfolio = $("#portfolio").refolio({
bar:'top',
width:700,
styleContainer:true,
items:[
{
image:"./image/abduzeedo.png",
title:"Abduzeedo",
tags:['Tag', 'Long Tag', 'Very Long Tag'],
description:'Design inspiration and tutorials by Fabio Sasso, a Brazilian designer living in Porto Alegre.',
link:''
},
{
image:"./image/etsy.jpg",
title:"Etsy",
tags:['Tag', 'Long Tag', 'Very Long Tag'],
description:'Buy and sell handmade or vintage items, art and supplies on Etsy, the world\'s most vibrant handmade marketplace. Share stories through millions of items.',
link:'http://www.etsy.com'
},
{
image:"./image/realmac.jpg",
title:"Real Mac",
tags:['Tag', 'Long Tag', 'Very Long Tag'],
description:'We make RapidWeaver, Courier, LittleSnapper & Analog for the Mac and Clear for iPhone.',
link:'http://www.realmacsoftware.com/'
},
{
image:"./image/flipboard.jpg",
title:"Flipboard",
tags:['Tag', 'Long Tag', 'Very Long Tag'],
description:'Your Social Magazine. Available for iPad, iPhone & Android.',
link:'http://www.flipboard.com'
},
{
image:"./image/vevo.jpg",
title:"VEVO",
tags:['Tag', 'Long Tag', 'Very Long Tag'],
description:'Watch your favorite artist\'s music videos, see premiere performances and search for new music on VEVO.com.',
link:'http://www.vevo.com'
}
]
});
});
</script>
<div id="portfolio" style="width: 60px; height: 400px;margin: 0 auto">
</div>
</body>
</html>