bxslider-rails 4.1.0 → 4.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/README.md +20 -11
- data/lib/bxslider-rails/version.rb +1 -1
- data/vendor/assets/javascripts/jquery.bxslider.js +1330 -1279
- data/vendor/assets/stylesheets/bxslider.css.scss +204 -0
- metadata +14 -15
- data/vendor/assets/stylesheets/bxslider.css +0 -197
@@ -0,0 +1,204 @@
|
|
1
|
+
/**
|
2
|
+
* BxSlider v4.1.2 - Fully loaded, responsive content slider
|
3
|
+
* http://bxslider.com
|
4
|
+
*
|
5
|
+
* Written by: Steven Wanderski, 2014
|
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
|
+
-moz-box-shadow: 0 0 5px #ccc;
|
34
|
+
-webkit-box-shadow: 0 0 5px #ccc;
|
35
|
+
box-shadow: 0 0 5px #ccc;
|
36
|
+
border: 5px solid #fff;
|
37
|
+
left: -5px;
|
38
|
+
background: #fff;
|
39
|
+
|
40
|
+
/*fix other elements on the page moving (on Chrome)*/
|
41
|
+
-webkit-transform: translatez(0);
|
42
|
+
-moz-transform: translatez(0);
|
43
|
+
-ms-transform: translatez(0);
|
44
|
+
-o-transform: translatez(0);
|
45
|
+
transform: translatez(0);
|
46
|
+
}
|
47
|
+
|
48
|
+
.bx-wrapper .bx-pager,
|
49
|
+
.bx-wrapper .bx-controls-auto {
|
50
|
+
position: absolute;
|
51
|
+
bottom: -30px;
|
52
|
+
width: 100%;
|
53
|
+
}
|
54
|
+
|
55
|
+
/* LOADER */
|
56
|
+
|
57
|
+
.bx-wrapper .bx-loading {
|
58
|
+
min-height: 50px;
|
59
|
+
background: image-url('bx_loader.gif') center center no-repeat #fff;
|
60
|
+
height: 100%;
|
61
|
+
width: 100%;
|
62
|
+
position: absolute;
|
63
|
+
top: 0;
|
64
|
+
left: 0;
|
65
|
+
z-index: 2000;
|
66
|
+
}
|
67
|
+
|
68
|
+
/* PAGER */
|
69
|
+
|
70
|
+
.bx-wrapper .bx-pager {
|
71
|
+
text-align: center;
|
72
|
+
font-size: .85em;
|
73
|
+
font-family: Arial;
|
74
|
+
font-weight: bold;
|
75
|
+
color: #666;
|
76
|
+
padding-top: 20px;
|
77
|
+
}
|
78
|
+
|
79
|
+
.bx-wrapper .bx-pager .bx-pager-item,
|
80
|
+
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
|
81
|
+
display: inline-block;
|
82
|
+
*zoom: 1;
|
83
|
+
*display: inline;
|
84
|
+
}
|
85
|
+
|
86
|
+
.bx-wrapper .bx-pager.bx-default-pager a {
|
87
|
+
background: #666;
|
88
|
+
text-indent: -9999px;
|
89
|
+
display: block;
|
90
|
+
width: 10px;
|
91
|
+
height: 10px;
|
92
|
+
margin: 0 5px;
|
93
|
+
outline: 0;
|
94
|
+
-moz-border-radius: 5px;
|
95
|
+
-webkit-border-radius: 5px;
|
96
|
+
border-radius: 5px;
|
97
|
+
}
|
98
|
+
|
99
|
+
.bx-wrapper .bx-pager.bx-default-pager a:hover,
|
100
|
+
.bx-wrapper .bx-pager.bx-default-pager a.active {
|
101
|
+
background: #000;
|
102
|
+
}
|
103
|
+
|
104
|
+
/* DIRECTION CONTROLS (NEXT / PREV) */
|
105
|
+
|
106
|
+
.bx-wrapper .bx-prev {
|
107
|
+
left: 10px;
|
108
|
+
background: image-url('controls.png') no-repeat 0 -32px;
|
109
|
+
}
|
110
|
+
|
111
|
+
.bx-wrapper .bx-next {
|
112
|
+
right: 10px;
|
113
|
+
background: image-url('controls.png') no-repeat -43px -32px;
|
114
|
+
}
|
115
|
+
|
116
|
+
.bx-wrapper .bx-prev:hover {
|
117
|
+
background-position: 0 0;
|
118
|
+
}
|
119
|
+
|
120
|
+
.bx-wrapper .bx-next:hover {
|
121
|
+
background-position: -43px 0;
|
122
|
+
}
|
123
|
+
|
124
|
+
.bx-wrapper .bx-controls-direction a {
|
125
|
+
position: absolute;
|
126
|
+
top: 50%;
|
127
|
+
margin-top: -16px;
|
128
|
+
outline: 0;
|
129
|
+
width: 32px;
|
130
|
+
height: 32px;
|
131
|
+
text-indent: -9999px;
|
132
|
+
z-index: 9999;
|
133
|
+
}
|
134
|
+
|
135
|
+
.bx-wrapper .bx-controls-direction a.disabled {
|
136
|
+
display: none;
|
137
|
+
}
|
138
|
+
|
139
|
+
/* AUTO CONTROLS (START / STOP) */
|
140
|
+
|
141
|
+
.bx-wrapper .bx-controls-auto {
|
142
|
+
text-align: center;
|
143
|
+
}
|
144
|
+
|
145
|
+
.bx-wrapper .bx-controls-auto .bx-start {
|
146
|
+
display: block;
|
147
|
+
text-indent: -9999px;
|
148
|
+
width: 10px;
|
149
|
+
height: 11px;
|
150
|
+
outline: 0;
|
151
|
+
background: image-url('controls.png') -86px -11px no-repeat;
|
152
|
+
margin: 0 3px;
|
153
|
+
}
|
154
|
+
|
155
|
+
.bx-wrapper .bx-controls-auto .bx-start:hover,
|
156
|
+
.bx-wrapper .bx-controls-auto .bx-start.active {
|
157
|
+
background-position: -86px 0;
|
158
|
+
}
|
159
|
+
|
160
|
+
.bx-wrapper .bx-controls-auto .bx-stop {
|
161
|
+
display: block;
|
162
|
+
text-indent: -9999px;
|
163
|
+
width: 9px;
|
164
|
+
height: 11px;
|
165
|
+
outline: 0;
|
166
|
+
background: image-url('controls.png') -86px -44px no-repeat;
|
167
|
+
margin: 0 3px;
|
168
|
+
}
|
169
|
+
|
170
|
+
.bx-wrapper .bx-controls-auto .bx-stop:hover,
|
171
|
+
.bx-wrapper .bx-controls-auto .bx-stop.active {
|
172
|
+
background-position: -86px -33px;
|
173
|
+
}
|
174
|
+
|
175
|
+
/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */
|
176
|
+
|
177
|
+
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
|
178
|
+
text-align: left;
|
179
|
+
width: 80%;
|
180
|
+
}
|
181
|
+
|
182
|
+
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
|
183
|
+
right: 0;
|
184
|
+
width: 35px;
|
185
|
+
}
|
186
|
+
|
187
|
+
/* IMAGE CAPTIONS */
|
188
|
+
|
189
|
+
.bx-wrapper .bx-caption {
|
190
|
+
position: absolute;
|
191
|
+
bottom: 0;
|
192
|
+
left: 0;
|
193
|
+
background: #666\9;
|
194
|
+
background: rgba(80, 80, 80, 0.75);
|
195
|
+
width: 100%;
|
196
|
+
}
|
197
|
+
|
198
|
+
.bx-wrapper .bx-caption span {
|
199
|
+
color: #fff;
|
200
|
+
font-family: Arial;
|
201
|
+
display: block;
|
202
|
+
font-size: .85em;
|
203
|
+
padding: 10px;
|
204
|
+
}
|
metadata
CHANGED
@@ -1,57 +1,56 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bxslider-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.1.
|
5
|
-
prerelease:
|
4
|
+
version: 4.1.2
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Mauricio N. Ferreira
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date:
|
11
|
+
date: 2015-09-20 00:00:00.000000000 Z
|
13
12
|
dependencies: []
|
14
|
-
description:
|
15
|
-
|
13
|
+
description: |2
|
14
|
+
bxSlider is a jQuery HTML Content Slider.
|
15
|
+
This gem allows for its easy inclusion into the rails asset pipeline.
|
16
16
|
email:
|
17
17
|
- contato@ferreiramauricio.com
|
18
18
|
executables: []
|
19
19
|
extensions: []
|
20
20
|
extra_rdoc_files: []
|
21
21
|
files:
|
22
|
-
-
|
22
|
+
- LICENSE
|
23
|
+
- README.md
|
23
24
|
- lib/bxslider-rails.rb
|
25
|
+
- lib/bxslider-rails/version.rb
|
24
26
|
- vendor/assets/images/bx_loader.gif
|
25
27
|
- vendor/assets/images/controls.png
|
26
28
|
- vendor/assets/javascripts/bxslider.js
|
27
29
|
- vendor/assets/javascripts/jquery.bxslider.js
|
28
30
|
- vendor/assets/javascripts/jquery.easing.1.3.js
|
29
31
|
- vendor/assets/javascripts/jquery.fitvids.js
|
30
|
-
- vendor/assets/stylesheets/bxslider.css
|
31
|
-
- LICENSE
|
32
|
-
- README.md
|
32
|
+
- vendor/assets/stylesheets/bxslider.css.scss
|
33
33
|
homepage:
|
34
34
|
licenses: []
|
35
|
+
metadata: {}
|
35
36
|
post_install_message:
|
36
37
|
rdoc_options: []
|
37
38
|
require_paths:
|
38
39
|
- lib
|
39
40
|
required_ruby_version: !ruby/object:Gem::Requirement
|
40
|
-
none: false
|
41
41
|
requirements:
|
42
|
-
- -
|
42
|
+
- - ">="
|
43
43
|
- !ruby/object:Gem::Version
|
44
44
|
version: '0'
|
45
45
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
46
|
-
none: false
|
47
46
|
requirements:
|
48
|
-
- -
|
47
|
+
- - ">="
|
49
48
|
- !ruby/object:Gem::Version
|
50
49
|
version: '0'
|
51
50
|
requirements: []
|
52
51
|
rubyforge_project:
|
53
|
-
rubygems_version:
|
52
|
+
rubygems_version: 2.4.5.1
|
54
53
|
signing_key:
|
55
|
-
specification_version:
|
54
|
+
specification_version: 4
|
56
55
|
summary: The bxSlider Rails is a jQuery HTML Content Slider ready to play with Rails.
|
57
56
|
test_files: []
|
@@ -1,197 +0,0 @@
|
|
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
|
-
-moz-box-shadow: 0 0 5px #ccc;
|
34
|
-
-webkit-box-shadow: 0 0 5px #ccc;
|
35
|
-
box-shadow: 0 0 5px #ccc;
|
36
|
-
border: solid #fff 5px;
|
37
|
-
left: -5px;
|
38
|
-
background: #fff;
|
39
|
-
}
|
40
|
-
|
41
|
-
.bx-wrapper .bx-pager,
|
42
|
-
.bx-wrapper .bx-controls-auto {
|
43
|
-
position: absolute;
|
44
|
-
bottom: -30px;
|
45
|
-
width: 100%;
|
46
|
-
}
|
47
|
-
|
48
|
-
/* LOADER */
|
49
|
-
|
50
|
-
.bx-wrapper .bx-loading {
|
51
|
-
min-height: 50px;
|
52
|
-
background: url(/assets/bx_loader.gif) center center no-repeat #fff;
|
53
|
-
height: 100%;
|
54
|
-
width: 100%;
|
55
|
-
position: absolute;
|
56
|
-
top: 0;
|
57
|
-
left: 0;
|
58
|
-
z-index: 2000;
|
59
|
-
}
|
60
|
-
|
61
|
-
/* PAGER */
|
62
|
-
|
63
|
-
.bx-wrapper .bx-pager {
|
64
|
-
text-align: center;
|
65
|
-
font-size: .85em;
|
66
|
-
font-family: Arial;
|
67
|
-
font-weight: bold;
|
68
|
-
color: #666;
|
69
|
-
padding-top: 20px;
|
70
|
-
}
|
71
|
-
|
72
|
-
.bx-wrapper .bx-pager .bx-pager-item,
|
73
|
-
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
|
74
|
-
display: inline-block;
|
75
|
-
*zoom: 1;
|
76
|
-
*display: inline;
|
77
|
-
}
|
78
|
-
|
79
|
-
.bx-wrapper .bx-pager.bx-default-pager a {
|
80
|
-
background: #666;
|
81
|
-
text-indent: -9999px;
|
82
|
-
display: block;
|
83
|
-
width: 10px;
|
84
|
-
height: 10px;
|
85
|
-
margin: 0 5px;
|
86
|
-
outline: 0;
|
87
|
-
-moz-border-radius: 5px;
|
88
|
-
-webkit-border-radius: 5px;
|
89
|
-
border-radius: 5px;
|
90
|
-
}
|
91
|
-
|
92
|
-
.bx-wrapper .bx-pager.bx-default-pager a:hover,
|
93
|
-
.bx-wrapper .bx-pager.bx-default-pager a.active {
|
94
|
-
background: #000;
|
95
|
-
}
|
96
|
-
|
97
|
-
/* DIRECTION CONTROLS (NEXT / PREV) */
|
98
|
-
|
99
|
-
.bx-wrapper .bx-prev {
|
100
|
-
left: 10px;
|
101
|
-
background: url(/assets/controls.png) no-repeat 0 -32px;
|
102
|
-
}
|
103
|
-
|
104
|
-
.bx-wrapper .bx-next {
|
105
|
-
right: 10px;
|
106
|
-
background: url(/assets/controls.png) no-repeat -43px -32px;
|
107
|
-
}
|
108
|
-
|
109
|
-
.bx-wrapper .bx-prev:hover {
|
110
|
-
background-position: 0 0;
|
111
|
-
}
|
112
|
-
|
113
|
-
.bx-wrapper .bx-next:hover {
|
114
|
-
background-position: -43px 0;
|
115
|
-
}
|
116
|
-
|
117
|
-
.bx-wrapper .bx-controls-direction a {
|
118
|
-
position: absolute;
|
119
|
-
top: 50%;
|
120
|
-
margin-top: -16px;
|
121
|
-
outline: 0;
|
122
|
-
width: 32px;
|
123
|
-
height: 32px;
|
124
|
-
text-indent: -9999px;
|
125
|
-
z-index: 9999;
|
126
|
-
}
|
127
|
-
|
128
|
-
.bx-wrapper .bx-controls-direction a.disabled {
|
129
|
-
display: none;
|
130
|
-
}
|
131
|
-
|
132
|
-
/* AUTO CONTROLS (START / STOP) */
|
133
|
-
|
134
|
-
.bx-wrapper .bx-controls-auto {
|
135
|
-
text-align: center;
|
136
|
-
}
|
137
|
-
|
138
|
-
.bx-wrapper .bx-controls-auto .bx-start {
|
139
|
-
display: block;
|
140
|
-
text-indent: -9999px;
|
141
|
-
width: 10px;
|
142
|
-
height: 11px;
|
143
|
-
outline: 0;
|
144
|
-
background: url(/assets/controls.png) -86px -11px no-repeat;
|
145
|
-
margin: 0 3px;
|
146
|
-
}
|
147
|
-
|
148
|
-
.bx-wrapper .bx-controls-auto .bx-start:hover,
|
149
|
-
.bx-wrapper .bx-controls-auto .bx-start.active {
|
150
|
-
background-position: -86px 0;
|
151
|
-
}
|
152
|
-
|
153
|
-
.bx-wrapper .bx-controls-auto .bx-stop {
|
154
|
-
display: block;
|
155
|
-
text-indent: -9999px;
|
156
|
-
width: 9px;
|
157
|
-
height: 11px;
|
158
|
-
outline: 0;
|
159
|
-
background: url(/assets/controls.png) -86px -44px no-repeat;
|
160
|
-
margin: 0 3px;
|
161
|
-
}
|
162
|
-
|
163
|
-
.bx-wrapper .bx-controls-auto .bx-stop:hover,
|
164
|
-
.bx-wrapper .bx-controls-auto .bx-stop.active {
|
165
|
-
background-position: -86px -33px;
|
166
|
-
}
|
167
|
-
|
168
|
-
/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */
|
169
|
-
|
170
|
-
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
|
171
|
-
text-align: left;
|
172
|
-
width: 80%;
|
173
|
-
}
|
174
|
-
|
175
|
-
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
|
176
|
-
right: 0;
|
177
|
-
width: 35px;
|
178
|
-
}
|
179
|
-
|
180
|
-
/* IMAGE CAPTIONS */
|
181
|
-
|
182
|
-
.bx-wrapper .bx-caption {
|
183
|
-
position: absolute;
|
184
|
-
bottom: 0;
|
185
|
-
left: 0;
|
186
|
-
background: #666\9;
|
187
|
-
background: rgba(80, 80, 80, 0.75);
|
188
|
-
width: 100%;
|
189
|
-
}
|
190
|
-
|
191
|
-
.bx-wrapper .bx-caption span {
|
192
|
-
color: #fff;
|
193
|
-
font-family: Arial;
|
194
|
-
display: block;
|
195
|
-
font-size: .85em;
|
196
|
-
padding: 10px;
|
197
|
-
}
|