Skip to content

Commit 5ebc04e

Browse files
committed
renamed to jquery-data-parallax
1 parent afcd956 commit 5ebc04e

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
# jquery-easy-parallax
2-
jQuery plugin for easy parallax effect.
1+
# [data-parallax]
2+
jQuery plugin for setting up parallax effects easily using data attributes.
33

44
## Examples
55

6-
[See Examples](http://kasparsj.github.io/jquery-easy-parallax/bower_components/jquery-easy-parallax/examples/)
6+
[See Examples](http://kasparsj.github.io/jquery-data-parallax/bower_components/jquery-data-parallax/examples/)
77

88
## Availability
99

1010
```bash
11-
bower install jquery-easy-parallax
11+
bower install jquery-data-parallax
1212
```
1313

1414
## Installation
1515

1616
```html
1717
<script src="bower_components/jquery/dist/jquery.min.js"></script>
1818
<script src="bower_components/jquery.requestAnimationFrame/jquery.requestAnimationFrame.min.js"></script>
19-
<script src="bower_components/jquery-easy-parallax/jquery.parallax.min.js"></script>
19+
<script src="bower_components/jquery-data-parallax/jquery.data-parallax.min.js"></script>
2020
```
2121

2222
## Usage

bower.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
2-
"name": "jquery-easy-parallax",
2+
"name": "jquery-data-parallax",
33
"version": "0.1.4",
4-
"homepage": "https://github.com/kasparsj/jquery-easy-parallax",
4+
"homepage": "https://github.com/kasparsj/jquery-data-parallax",
55
"authors": [
66
"Kaspars <[email protected]>"
77
],
8-
"description": "jQuery plugin for easy parallax effect",
9-
"main": "jquery.parallax.js",
8+
"description": "jQuery plugin for setting up parallax effects easily using data attributes.",
9+
"main": "jquery.data-parallax.js",
1010
"dependencies": {
1111
"jquery": ">=1.9.0",
1212
"jquery.requestAnimationFrame": "latest"

examples/hero-bg.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
<html>
33
<head lang="en">
44
<meta charset="UTF-8">
5-
<title>Hero section background | jquery-easy-parallax examples</title>
5+
<title>Hero section background | jquery-data-parallax examples</title>
66
<link rel="stylesheet" href="css/examples.css" type="text/css">
77
</head>
88
<body>
99
<section class="hero">
1010
<div class="section-bg bg-sky" data-parallax='{"y":"70%"}'></div>
1111
<div class="abs-content-middle">
12-
<h1>jquery-easy-parallax</h1>
12+
<h1>jquery-data-parallax</h1>
1313
<p>Uses a single ticking requestAnimationFrame() method and translate3d to ensure GPU acceleration.</p>
1414
</div>
1515
</section>
@@ -34,6 +34,6 @@ <h2>Dolor cool</h2>
3434
<p>Aenean nec eros velit. Praesent hendrerit ligula eu purus rhoncus, vitae molestie elit porta. Aliquam nibh turpis, faucibus vitae mollis sit amet, auctor ut augue. Sed eu ultrices velit, a convallis dui. Ut fringilla nibh tortor. Aliquam erat volutpat. Etiam dignissim ullamcorper mollis. Etiam ultrices nunc eget risus tempus elementum. Praesent quis enim vestibulum, fringilla arcu eu, ornare massa. In luctus, dui non interdum semper, eros est hendrerit diam, sed fringilla massa arcu eget quam. Nunc pretium eros in malesuada pretium. Duis id interdum mi. Cras imperdiet, lectus ut ultrices imperdiet, nisl tellus lacinia sapien, ac hendrerit erat lorem a nisl. Donec faucibus orci a neque suscipit fermentum.</p>
3535
<script src="http://code.jquery.com/jquery-2.1.4.js"></script>
3636
<script src="https://raw.githubusercontent.com/kasparsj/jquery.requestAnimationFrame/master/jquery.requestAnimationFrame.min.js"></script>
37-
<script src="../jquery.parallax.js"></script>
37+
<script src="../jquery.data-parallax.js"></script>
3838
</body>
3939
</html>

examples/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head lang="en">
44
<meta charset="UTF-8">
5-
<title>jquery-easy-parallax examples</title>
5+
<title>jquery-data-parallax examples</title>
66
</head>
77
<body>
88
<ul>

examples/sections.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head lang="en">
44
<meta charset="UTF-8">
5-
<title>Classic parallax sections | jquery-easy-parallax examples</title>
5+
<title>Classic parallax sections | jquery-data-parallax examples</title>
66
<link rel="stylesheet" href="css/examples.css" type="text/css">
77
</head>
88
<link rel="stylesheet" href="css/examples.css" type="text/css">
@@ -30,6 +30,6 @@
3030
</section>
3131
<script src="http://code.jquery.com/jquery-2.1.4.js"></script>
3232
<script src="https://raw.githubusercontent.com/kasparsj/jquery.requestAnimationFrame/master/jquery.requestAnimationFrame.min.js"></script>
33-
<script src="../jquery.parallax.js"></script>
33+
<script src="../jquery.data-parallax.js"></script>
3434
</body>
3535
</html>
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)