We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Say the rect.height = 300, when using something like this:
rect.height = 300
<div in-view="inView($inviewInfo)" in-view-options="{ offset: ['-25%',0] }">
The resulting element offset is calculated as: [-7500,0,-7500,0]
[-7500,0,-7500,0]
It should be: [-75,0,-75,0]
[-75,0,-75,0]
The text was updated successfully, but these errors were encountered:
a0ea102
Merge pull request #132 from steevee/master
7870156
Fixes #131 - percent correctly translated
No branches or pull requests
Say the
rect.height = 300
, when using something like this:The resulting element offset is calculated as:
[-7500,0,-7500,0]
It should be:
[-75,0,-75,0]
The text was updated successfully, but these errors were encountered: