-
Notifications
You must be signed in to change notification settings - Fork 0
/
instaFeed.html
123 lines (119 loc) · 2.64 KB
/
instaFeed.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Scripted Pixels' Instagram Feed</title>
<style type="text/css">
/* setup the very basis for the document */
body {
text-align:center;
font-family:'Helvetica Neue';
font-weight: lighter;
font-size: 16px;
background: #FA4E06;
padding-top: 50px;
}
a {
color: #f0f0f0;
text-decoration: none;
}
.container {
clear: both;
display: block;
margin: 0 auto;
width: 100%;
height: 9000px;
position: relative;
}
/* ANIMATIONS */
.amimate {
-webkit-transition: all 0.35s ease-in-out;
-moz-transition: all 0.35s ease-in-out;
-ms-transition: all 0.35s ease-in-out;
-o-transition: all 0.35s ease-in-out;
transition: all 0.35s ease-in-out;
}
.yobeatSCinstagramwidget {
width: 255px;
height: 360px;
background: black;
position:relative;
}
.sc-ig-scroller {
width: 250px;
height: 295px;
position:relative;
overflow:hidden;
}
.sc-ig-scroller .items {
width: 200000em;
position: absolute;
}
.sc-ig-scroller .item {
width:245px;
height:250px;
margin-right:10px;
float:left;
}
.SC-instagram-image {
width: 237px;
height: 237px;
margin-left: 9px;
}
.yobeatSCinstagramwidget a h2 {
color: white;
font-family: Helvetica;
font-weight: bold;
font-size: 16px;
text-align:right;
position: absolute;
right: 10px;
bottom: 10px;
}
h3.ig-count {
color: white;
}
.yobeatSCinstagramwidget h3 {
color: white;
font-family: Helvetica;
font-weight: bold;
font-size: 12px;
text-decoration: none;
}
span.counts {
float: left;
width: 50px;
margin-left: 9px;
line-height: 1px;
}
.counts img {
float: left;
margin-top: 7px;
}
h3.scusername {margin-left:10px;font-size: 10px; line-height:0px;margin-bottom:1px;}
</style>
</head>
<body>
<div class="container">
<div class="yobeatSCinstagramwidget">
<a href="http://instagram.com/skullcandy">
<img src="images/skullcandyad_01.jpg">
<div class="sc-ig-scroller">
<div class="items">
</div><!--items-->
</div><!--sc-ig-scroller-->
</a>
<a href="http://instagram.com/skullcandy"><h2>#Skullcandysnow</h2></a>
</div><!--yobeatSCinstagramwidget-->
</div>
<!-- jQuery and JS -->
<script src="js/jquery-1.10.2.min.js"></script>
<script src="js/jquery.tools.min.js"></script>
<script src="js/jquery.easing.1.3.js"></script>
<script src="js/yobeatinstagram_v4.js"></script>
<script>
</script>
</body>
</html>