parallaxslider-rails 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/README.md +59 -1
- data/app/assets/stylesheets/{style.css → parallaxslider.css} +0 -0
- data/lib/parallaxslider-rails/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
NWM4MzZhOTkxZTEzZDVmNjY4ODVmOTQzZmU2ODgzMWQ3YjZiMzFlMw==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
MGQ1NzI0OTBmYTYyODRlNjUyM2M4OGVlNGVhOTQ4NmFhMzkxMzVhZA==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
ZDYxZGIwZmRjMWJhYTk1NWY4OTIzMzcwNmVlNjIyNzFkMDVjMjNiZTVmODVm
|
10
|
+
YjQ1NjY4NDNmZTNiODAyNTNjMDM2MjIzZjJhMjhlOGUzMjBiODc1ZjQ1MTFi
|
11
|
+
OWM4YTdmY2MwMjIzY2ZiNTQwZWIxYTlmZjRkYTMyZWFhZTM1MWU=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
MzYzM2RkNjZlNjE4YzdlNWVkMzFlNzIwOWJjNzY0NzFlYjAzZTAyMzRjMzUz
|
14
|
+
YTY5ZGFhNTk3YThmNWI1MjIzYjQwYWY2ZDJiNDMwMWNmODUwMTVhOWZkNTJj
|
15
|
+
YWE0MzYyMzUxMWY3NjIzYjU0YmFmYWNkYTM1M2U1NTFiNGM3M2Q=
|
data/README.md
CHANGED
@@ -1 +1,59 @@
|
|
1
|
-
#
|
1
|
+
# Parallax Content Slider with CSS3 and jQuery Gem
|
2
|
+
|
3
|
+
## Installation
|
4
|
+
|
5
|
+
Add this line to your application's Gemfile:
|
6
|
+
|
7
|
+
```ruby
|
8
|
+
gem 'parallaxslider-rails'
|
9
|
+
```
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
```
|
13
|
+
$ bundle install
|
14
|
+
```
|
15
|
+
|
16
|
+
## Usage
|
17
|
+
|
18
|
+
Parallax Slider is dependant on jQuery, so make sure you have it in your Gemfile.
|
19
|
+
|
20
|
+
```
|
21
|
+
//= require jquery
|
22
|
+
```
|
23
|
+
|
24
|
+
Add to your app/assets/javascripts/application.js
|
25
|
+
|
26
|
+
```
|
27
|
+
//= require modernizr.custom.28468
|
28
|
+
//= require jquery.cslider
|
29
|
+
|
30
|
+
```
|
31
|
+
|
32
|
+
|
33
|
+
And to your app/assets/stylesheets/application.css.sass or application.css.scss
|
34
|
+
|
35
|
+
|
36
|
+
```
|
37
|
+
@import parallaxslider
|
38
|
+
```
|
39
|
+
|
40
|
+
Or application.css:
|
41
|
+
|
42
|
+
```
|
43
|
+
*= require parallaxslider
|
44
|
+
```
|
45
|
+
|
46
|
+
## Documentation
|
47
|
+
|
48
|
+
Usage documentation as well as demos can be found at:
|
49
|
+
|
50
|
+
http://tympanus.net/codrops/2012/03/15/parallax-content-slider-with-css3-and-jquery/
|
51
|
+
|
52
|
+
|
53
|
+
## Contributing
|
54
|
+
|
55
|
+
1. Fork it ( https://github.com/[my-github-username]/parallaxslider-rails/fork )
|
56
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
57
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
58
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
59
|
+
5. Create a new Pull Request
|
File without changes
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: parallaxslider-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- TwoWeb
|
@@ -67,7 +67,7 @@ files:
|
|
67
67
|
- app/assets/stylesheets/fonts/BebasNeue-webfont.woff
|
68
68
|
- app/assets/stylesheets/fonts/Dharma Type Font License.txt
|
69
69
|
- app/assets/stylesheets/nojs.css
|
70
|
-
- app/assets/stylesheets/
|
70
|
+
- app/assets/stylesheets/parallaxslider.css
|
71
71
|
- app/assets/stylesheets/style2.css
|
72
72
|
- lib/parallaxslider-rails.rb
|
73
73
|
- lib/parallaxslider-rails/version.rb
|