Tagged: animation, fullscreen images
Fullscreen images with animation – is that posible?
Or ican you animate a background image?
I would like a to make a fullcreen image parallax like the column animation options allow.
thanks
Nancy
Hey Munford,
Thank you for your patience and the link to your site, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:
@keyframes wave {
2% {
transform: translateY(1);
}
25% {
transform: translateY(-5%);
}
50% {
transform: translateY(-10%);
}
75% {
transform: translateY(-5%);
}
100% {
transform: translateY(1);
}
}
.avia-section.av-19x7zc-ab627dc65dd0d1430ae6e174e413abaa .av-parallax .av-parallax-inner {
animation: wave 10s -3s linear infinite;
transform: translate3d(0, 0, 0);
}
it will move the background blue wave image up and down slightly.
Best regards,
Mike
Thanks –
Is there a way to add that to the other pages as well?