Skip to content

Commit 1681b94

Browse files
committed
Added modules.
1 parent 7f56605 commit 1681b94

File tree

2,762 files changed

+486399
-23
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,762 files changed

+486399
-23
lines changed
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
jquery.bxslider.zip
+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"name": "bxslider-4",
3+
"version": "4.1.2",
4+
"homepage": "http://bxslider.com",
5+
"license": "MIT",
6+
"main": [
7+
"jquery.bxslider.js",
8+
"jquery.bxslider.css",
9+
"images/bx_loader.gif",
10+
"images/controls.png"
11+
],
12+
"keywords": [
13+
"bxslider",
14+
"javascript",
15+
"jquery",
16+
"library"
17+
],
18+
"ignore": [
19+
"**/.*",
20+
"*.md"
21+
],
22+
"dependencies": {
23+
"jquery": ">=1.6"
24+
}
25+
}
Loading
2.74 KB
Loading
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,209 @@
1+
/**
2+
* BxSlider v4.0 - Fully loaded, responsive content slider
3+
* http://bxslider.com
4+
*
5+
* Written by: Steven Wanderski, 2012
6+
* http://stevenwanderski.com
7+
* (while drinking Belgian ales and listening to jazz)
8+
*
9+
* CEO and founder of bxCreative, LTD
10+
* http://bxcreative.com
11+
*/
12+
13+
14+
/** RESET AND LAYOUT
15+
===================================*/
16+
17+
.bx-wrapper {
18+
position: relative;
19+
margin: 0 auto 60px;
20+
padding: 0;
21+
*zoom: 1;
22+
}
23+
24+
.bx-wrapper img {
25+
max-width: 100%;
26+
display: block;
27+
}
28+
29+
/** THEME
30+
===================================*/
31+
32+
.bx-wrapper .bx-viewport {
33+
padding: 0 0px;
34+
}
35+
36+
.bx-wrapper .bx-pager,
37+
.bx-wrapper .bx-controls-auto {
38+
position: absolute;
39+
bottom: -30px;
40+
left: 50%;
41+
margin-left: -20px;
42+
width: auto;
43+
display: none;
44+
}
45+
46+
/* LOADER */
47+
48+
.bx-wrapper .bx-loading {
49+
min-height: 50px;
50+
background: url(../images/bx_loader.gif) center center no-repeat #fff;
51+
height: 100%;
52+
width: 100%;
53+
position: absolute;
54+
top: 0;
55+
left: 0;
56+
z-index: 2000;
57+
}
58+
59+
/* PAGER */
60+
61+
.bx-wrapper .bx-pager {
62+
text-align: center;
63+
font-size: .85em;
64+
font-family: Arial;
65+
font-weight: bold;
66+
color: #666;
67+
padding-top: 20px;
68+
z-index: 4;
69+
}
70+
71+
.bx-wrapper .bx-pager .bx-pager-item,
72+
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
73+
display: inline-block;
74+
*zoom: 1;
75+
margin: 0;
76+
padding-top: 0;
77+
}
78+
79+
.bx-wrapper .bx-pager.bx-default-pager a {
80+
background: #fff;
81+
border: 1px solid #cccccc;
82+
text-indent: -9999px;
83+
display: block;
84+
width: 10px;
85+
height: 10px;
86+
margin: 0 0 0 10px;
87+
outline: 0;
88+
-o-border-radius: 50%;
89+
-moz-border-radius: 50%;
90+
-webkit-border-radius: 50%;
91+
border-radius: 50%;
92+
transition: all 0.17s ease-in-out;
93+
-moz-transition: all 0.17s ease-in-out;
94+
-webkit-transition: all 0.17s ease-in-out;
95+
-o-transition: all 0.17s ease-in-out;
96+
}
97+
98+
.bx-wrapper .bx-pager.bx-default-pager a.active {
99+
width: 10px;
100+
height: 10px;
101+
background: #cccccc;
102+
103+
}
104+
105+
/* DIRECTION CONTROLS (NEXT / PREV) */
106+
107+
108+
.bx-wrapper .bx-controls-direction a {
109+
display: block;
110+
position: absolute;
111+
top: 50%;
112+
margin-top: -11px;
113+
outline: 0;
114+
width: 13px;
115+
height: 21px;
116+
text-indent: -9999px;
117+
z-index: 9999;
118+
border: none;
119+
opacity: 0.5;
120+
transition: all 0.17s ease-in-out;
121+
-moz-transition: all 0.17s ease-in-out;
122+
-webkit-transition: all 0.17s ease-in-out;
123+
-o-transition: all 0.17s ease-in-out;
124+
}
125+
126+
.bx-wrapper .bx-controls-direction a:hover {
127+
opacity: 1;
128+
}
129+
130+
.bx-wrapper .bx-prev {
131+
left: -2px;
132+
background: url('../images/prev.png') center center no-repeat;
133+
}
134+
135+
.bx-wrapper .bx-next {
136+
right: -2px;
137+
background: url('../images/next.png') center center no-repeat;
138+
}
139+
140+
.bx-wrapper .bx-controls-direction a.disabled {
141+
display: none;
142+
}
143+
144+
/* AUTO CONTROLS (START / STOP) */
145+
146+
.bx-wrapper .bx-controls-auto {
147+
text-align: center;
148+
}
149+
150+
.bx-wrapper .bx-controls-auto .bx-start {
151+
display: block;
152+
text-indent: -9999px;
153+
width: 10px;
154+
height: 11px;
155+
outline: 0;
156+
background: url(images/controls.png) -86px -11px no-repeat;
157+
margin: 0 3px;
158+
}
159+
160+
.bx-wrapper .bx-controls-auto .bx-start:hover,
161+
.bx-wrapper .bx-controls-auto .bx-start.active {
162+
background-position: -86px 0;
163+
}
164+
165+
.bx-wrapper .bx-controls-auto .bx-stop {
166+
display: block;
167+
text-indent: -9999px;
168+
width: 9px;
169+
height: 11px;
170+
outline: 0;
171+
background: url(images/controls.png) -86px -44px no-repeat;
172+
margin: 0 3px;
173+
}
174+
175+
.bx-wrapper .bx-controls-auto .bx-stop:hover,
176+
.bx-wrapper .bx-controls-auto .bx-stop.active {
177+
background-position: -86px -33px;
178+
}
179+
180+
/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */
181+
182+
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
183+
text-align: left;
184+
width: 80%;
185+
}
186+
187+
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
188+
right: 0;
189+
width: 35px;
190+
}
191+
192+
/* IMAGE CAPTIONS */
193+
194+
.bx-wrapper .bx-caption {
195+
position: absolute;
196+
bottom: 0;
197+
left: 0;
198+
background: #666\9;
199+
background: rgba(80, 80, 80, 0.75);
200+
width: 100%;
201+
}
202+
203+
.bx-wrapper .bx-caption span {
204+
color: #fff;
205+
font-family: Arial;
206+
display: block;
207+
font-size: .85em;
208+
padding: 10px;
209+
}

0 commit comments

Comments
 (0)