Addition to animate.css.
Animae can animate elements when they are visible (in viewport). Also, background image can be changed when some element enters into view.
-
instead
animated
addanimae
class to elements and prefix effects witha-
(e.g.bounce
should bea-bounce
) -
call
animae()
on content ready (it will do simply:$(window).on("scroll resize", animateVisible)
) or callanimateVisible()
instead whenever you want.
When user is scrolling and some section enters into view, background image can be changed automatically.
Add animae
class to element which should change background image when enters into view and set its data-background-image
, for example:
<div class="animae" data-background-image="url('URL_TO_NEW_IMAGE')"></div>
BTW, you can have any number of "background switchers"
You can pass options object to animae()
function.
Following options are supported:
backgroundImage: "url"
- default (initial) background image. If background switcher is not found, this background image will be shown.
Example:
animae({
backgroundImage: "https://apod.nasa.gov/apod/image/0801/16500feetmilkywaykc2_brunier.jpg"
});
That's it.
Enjoy!