-
Notifications
You must be signed in to change notification settings - Fork 143
Open
Labels
Description
Hello!
I have the problem that only some of my Parallax Inits work. When expecting the code I saw that there is no translate3D on these elements:
Here's my code:
var heroForeground = document.getElementsByClassName('hero-section-foreground');
var heroShip = document.getElementsByClassName('hero-section-ship');
var heroBackground = document.getElementsByClassName('hero-section-background');
new simpleParallax(heroForeground, {
overflow: true,
scale: 1.5,
});
new simpleParallax(heroShip, {
overflow: true,
scale: 0.8,
});
new simpleParallax(heroBackground, {
overflow: true,
scale: 0.6,
});
On Chrome it works without a problem.
Thanks in advance!
edyken77 and eaCe