jquery.ripples icon indicating copy to clipboard operation
jquery.ripples copied to clipboard

Page Scrolling

Open PMCJohn opened this issue 8 years ago • 2 comments

When I use it on a page that has the ability to scroll the canvas cuts off at the bottom of the initial height, is there a way to fix this?

PMCJohn avatar Nov 27 '16 04:11 PMCJohn

If I understand your case correctly, what I think could work as a workaround is to append a div with the following styling to the body, then apply the effect to that div.

position: fixed;
left: 0;
top: 0;
bottom: 0;
right: 0;
z-index: -1;

But yeah, you shouldn't be relying on a workaround. I should fix this some time.

sirxemic avatar Dec 05 '16 10:12 sirxemic

If I understand your case correctly, what I think could work as a workaround is to append a div with the following styling to the body, then apply the effect to that div.

position: fixed;
left: 0;
top: 0;
bottom: 0;
right: 0;
z-index: -1;

But yeah, you shouldn't be relying on a workaround. I should fix this some time.

I found the fix for this issue, in the jquery.ripples, you need to change the backgroundImage style from none to ' ', that's it.

Morningstar-08 avatar Jul 26 '23 08:07 Morningstar-08