hey Guys, did anyone have this flickering issue in Safari when using the FullPage.js plugin with Horizontal Scroll extension? you may notice it in the end on the red background
Did you manage to fix it?
thank you
Here is my public share link: LINK
(how to access public share link)
hey guys the flickering issue can be fixed by the following code, added to each of the divs in your fullpage structure:
so for example if your panel looks like this:

You should add the following code in your head section:
.wrapper {
-webkit-transform: translate3d(0,0,0);
}
.slide {
-webkit-transform: translate3d(0,0,0);
}
.section {
-webkit-transform: translate3d(0,0,0);
}
1 Like