fullpagejs-rails 2.7.5.1

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.
@@ -0,0 +1,226 @@
1
+ /*!
2
+ * fullPage 2.8.2
3
+ * https://github.com/alvarotrigo/fullPage.js
4
+ * MIT licensed
5
+ *
6
+ * Copyright (C) 2013 alvarotrigo.com - A project by Alvaro Trigo
7
+ */
8
+ html.fp-enabled,
9
+ .fp-enabled body {
10
+ margin: 0;
11
+ padding: 0;
12
+ overflow:hidden;
13
+
14
+ /*Avoid flicker on slides transitions for mobile phones #336 */
15
+ -webkit-tap-highlight-color: rgba(0,0,0,0);
16
+ }
17
+ #superContainer {
18
+ height: 100%;
19
+ position: relative;
20
+
21
+ /* Touch detection for Windows 8 */
22
+ -ms-touch-action: none;
23
+
24
+ /* IE 11 on Windows Phone 8.1*/
25
+ touch-action: none;
26
+ }
27
+ .fp-section {
28
+ position: relative;
29
+ -webkit-box-sizing: border-box; /* Safari<=5 Android<=3 */
30
+ -moz-box-sizing: border-box; /* <=28 */
31
+ box-sizing: border-box;
32
+ }
33
+ .fp-slide {
34
+ float: left;
35
+ }
36
+ .fp-slide, .fp-slidesContainer {
37
+ height: 100%;
38
+ display: block;
39
+ }
40
+ .fp-slides {
41
+ z-index:1;
42
+ height: 100%;
43
+ overflow: hidden;
44
+ position: relative;
45
+ -webkit-transition: all 0.3s ease-out; /* Safari<=6 Android<=4.3 */
46
+ transition: all 0.3s ease-out;
47
+ }
48
+ .fp-section.fp-table, .fp-slide.fp-table {
49
+ display: table;
50
+ table-layout:fixed;
51
+ width: 100%;
52
+ }
53
+ .fp-tableCell {
54
+ display: table-cell;
55
+ vertical-align: middle;
56
+ width: 100%;
57
+ height: 100%;
58
+ }
59
+ .fp-slidesContainer {
60
+ float: left;
61
+ position: relative;
62
+ }
63
+ .fp-controlArrow {
64
+ -webkit-user-select: none; /* webkit (safari, chrome) browsers */
65
+ -moz-user-select: none; /* mozilla browsers */
66
+ -khtml-user-select: none; /* webkit (konqueror) browsers */
67
+ -ms-user-select: none; /* IE10+ */
68
+ position: absolute;
69
+ z-index: 4;
70
+ top: 50%;
71
+ cursor: pointer;
72
+ width: 0;
73
+ height: 0;
74
+ border-style: solid;
75
+ margin-top: -38px;
76
+ -webkit-transform: translate3d(0,0,0);
77
+ -ms-transform: translate3d(0,0,0);
78
+ transform: translate3d(0,0,0);
79
+ }
80
+ .fp-controlArrow.fp-prev {
81
+ left: 15px;
82
+ width: 0;
83
+ border-width: 38.5px 34px 38.5px 0;
84
+ border-color: transparent #fff transparent transparent;
85
+ }
86
+ .fp-controlArrow.fp-next {
87
+ right: 15px;
88
+ border-width: 38.5px 0 38.5px 34px;
89
+ border-color: transparent transparent transparent #fff;
90
+ }
91
+ .fp-scrollable {
92
+ overflow: hidden;
93
+ position: relative;
94
+ }
95
+ .fp-scroller{
96
+ overflow: hidden;
97
+ }
98
+ .iScrollIndicator{
99
+ border: 0 !important;
100
+ }
101
+ .fp-notransition {
102
+ -webkit-transition: none !important;
103
+ transition: none !important;
104
+ }
105
+ #fp-nav {
106
+ position: fixed;
107
+ z-index: 100;
108
+ margin-top: -32px;
109
+ top: 50%;
110
+ opacity: 1;
111
+ -webkit-transform: translate3d(0,0,0);
112
+ }
113
+ #fp-nav.right {
114
+ right: 17px;
115
+ }
116
+ #fp-nav.left {
117
+ left: 17px;
118
+ }
119
+ .fp-slidesNav{
120
+ position: absolute;
121
+ z-index: 4;
122
+ left: 50%;
123
+ opacity: 1;
124
+ }
125
+ .fp-slidesNav.bottom {
126
+ bottom: 17px;
127
+ }
128
+ .fp-slidesNav.top {
129
+ top: 17px;
130
+ }
131
+ #fp-nav ul,
132
+ .fp-slidesNav ul {
133
+ margin: 0;
134
+ padding: 0;
135
+ }
136
+ #fp-nav ul li,
137
+ .fp-slidesNav ul li {
138
+ display: block;
139
+ width: 14px;
140
+ height: 13px;
141
+ margin: 7px;
142
+ position:relative;
143
+ }
144
+ .fp-slidesNav ul li {
145
+ display: inline-block;
146
+ }
147
+ #fp-nav ul li a,
148
+ .fp-slidesNav ul li a {
149
+ display: block;
150
+ position: relative;
151
+ z-index: 1;
152
+ width: 100%;
153
+ height: 100%;
154
+ cursor: pointer;
155
+ text-decoration: none;
156
+ }
157
+ #fp-nav ul li a.active span,
158
+ .fp-slidesNav ul li a.active span,
159
+ #fp-nav ul li:hover a.active span,
160
+ .fp-slidesNav ul li:hover a.active span{
161
+ height: 12px;
162
+ width: 12px;
163
+ margin: -6px 0 0 -6px;
164
+ border-radius: 100%;
165
+ }
166
+ #fp-nav ul li a span,
167
+ .fp-slidesNav ul li a span {
168
+ border-radius: 50%;
169
+ position: absolute;
170
+ z-index: 1;
171
+ height: 4px;
172
+ width: 4px;
173
+ border: 0;
174
+ background: #333;
175
+ left: 50%;
176
+ top: 50%;
177
+ margin: -2px 0 0 -2px;
178
+ -webkit-transition: all 0.1s ease-in-out;
179
+ -moz-transition: all 0.1s ease-in-out;
180
+ -o-transition: all 0.1s ease-in-out;
181
+ transition: all 0.1s ease-in-out;
182
+ }
183
+ #fp-nav ul li:hover a span,
184
+ .fp-slidesNav ul li:hover a span{
185
+ width: 10px;
186
+ height: 10px;
187
+ margin: -5px 0px 0px -5px;
188
+ }
189
+ #fp-nav ul li .fp-tooltip {
190
+ position: absolute;
191
+ top: -2px;
192
+ color: #fff;
193
+ font-size: 14px;
194
+ font-family: arial, helvetica, sans-serif;
195
+ white-space: nowrap;
196
+ max-width: 220px;
197
+ overflow: hidden;
198
+ display: block;
199
+ opacity: 0;
200
+ width: 0;
201
+ cursor: pointer;
202
+ }
203
+ #fp-nav ul li:hover .fp-tooltip,
204
+ #fp-nav.fp-show-active a.active + .fp-tooltip {
205
+ -webkit-transition: opacity 0.2s ease-in;
206
+ transition: opacity 0.2s ease-in;
207
+ width: auto;
208
+ opacity: 1;
209
+ }
210
+ #fp-nav ul li .fp-tooltip.right {
211
+ right: 20px;
212
+ }
213
+ #fp-nav ul li .fp-tooltip.left {
214
+ left: 20px;
215
+ }
216
+ .fp-auto-height.fp-section,
217
+ .fp-auto-height .fp-slide,
218
+ .fp-auto-height .fp-tableCell{
219
+ height: auto !important;
220
+ }
221
+
222
+ .fp-responsive .fp-auto-height-responsive.fp-section,
223
+ .fp-responsive .fp-auto-height-responsive .fp-slide,
224
+ .fp-responsive .fp-auto-height-responsive .fp-tableCell {
225
+ height: auto !important;
226
+ }
metadata ADDED
@@ -0,0 +1,116 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: fullpagejs-rails
3
+ version: !ruby/object:Gem::Version
4
+ version: 2.7.5.1
5
+ platform: ruby
6
+ authors:
7
+ - rocLv
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-07-17 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.12'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.12'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: railties
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">"
60
+ - !ruby/object:Gem::Version
61
+ version: '3.1'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">"
67
+ - !ruby/object:Gem::Version
68
+ version: '3.1'
69
+ description: " This is fullpagejs' wrap. For more information, please forward to https://github.com/alvarotrigo/fullpage.js "
70
+ email:
71
+ - wangqsh999@gmail.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - ".gitignore"
77
+ - ".rspec"
78
+ - ".travis.yml"
79
+ - CODE_OF_CONDUCT.md
80
+ - Gemfile
81
+ - LICENSE.txt
82
+ - README.md
83
+ - Rakefile
84
+ - bin/console
85
+ - bin/setup
86
+ - fullpagejs-rails.gemspec
87
+ - lib/fullpagejs/rails.rb
88
+ - lib/fullpagejs/rails/engine.rb
89
+ - lib/fullpagejs/rails/version.rb
90
+ - vendor/assets/javascripts/jquery.fullpage.js
91
+ - vendor/assets/stylesheets/jquery.fullpage.css
92
+ homepage: https://github.com/roclv/fullpagejs-rails
93
+ licenses:
94
+ - MIT
95
+ metadata: {}
96
+ post_install_message:
97
+ rdoc_options: []
98
+ require_paths:
99
+ - lib
100
+ required_ruby_version: !ruby/object:Gem::Requirement
101
+ requirements:
102
+ - - ">="
103
+ - !ruby/object:Gem::Version
104
+ version: '0'
105
+ required_rubygems_version: !ruby/object:Gem::Requirement
106
+ requirements:
107
+ - - ">="
108
+ - !ruby/object:Gem::Version
109
+ version: '0'
110
+ requirements: []
111
+ rubyforge_project:
112
+ rubygems_version: 2.5.1
113
+ signing_key:
114
+ specification_version: 4
115
+ summary: This is fullpagejs' wrap.
116
+ test_files: []