Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Small fixes #1

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ enabling parallax elements.

```html
<parallax-container>
<parallax rate="0.3">
<img src="header.png"></img>
</parallax>
<parallax-something rate="0.3">
<img src="header.png">
</parallax-something>

<p>Site content continues</p>
</parallax-container>
Expand All @@ -36,7 +36,7 @@ which would make it possible to declaratively specify your parallax effect but
there are many technical challenges that have made this a problem. However, it
is possible to implement parallax in the browser's asynchronous scrolling today
by combining 3d perspective and sticky positioning. This is very unergonomic,
which is exactly the sort of case that permafills can solve!
which is exactly the sort of case that layered APIs can solve!

## Implementation

Expand Down