You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi
This is a feature request. can there be an option so that the Parallax stops at 50% or halfway and the image scrolls up normally.
I have a parallax which has Text on the left and on the right is an image of a man. I need that the text and the man should come exactly side by side. At 50% It does come exactly side by side, but as you scroll down, the text goes up and the man gets hidden by the parallax below.
Can you add an option so that at 50%... the parallax does not happen and the image goes up as normal
Currently I solved this issue with my website by adding this code
if ( this.offsetTop >= 28 ) {
this.offsetTop = 28
}
just after
this.visibility = 'visible';
this.mirrorTop = this.boxOffsetTop - scrollTop;
this.mirrorLeft = this.boxOffsetLeft - scrollLeft;
this.offsetTop = this.offsetBaseTop - this.mirrorTop * (1 - this.speed);
Can you add this feature?
The text was updated successfully, but these errors were encountered:
Hi
This is a feature request. can there be an option so that the Parallax stops at 50% or halfway and the image scrolls up normally.
I have a parallax which has Text on the left and on the right is an image of a man. I need that the text and the man should come exactly side by side. At 50% It does come exactly side by side, but as you scroll down, the text goes up and the man gets hidden by the parallax below.
Can you add an option so that at 50%... the parallax does not happen and the image goes up as normal
Currently I solved this issue with my website by adding this code
if ( this.offsetTop >= 28 ) {
this.offsetTop = 28
}
just after
this.visibility = 'visible';
this.mirrorTop = this.boxOffsetTop - scrollTop;
this.mirrorLeft = this.boxOffsetLeft - scrollLeft;
this.offsetTop = this.offsetBaseTop - this.mirrorTop * (1 - this.speed);
Can you add this feature?
The text was updated successfully, but these errors were encountered: