jQuery Aniview code example
Example 1: jQuery Aniview
.fast {
-vendor-animation-duration: 1s;
-vendor-animation-delay: 0s;
}
.slow {
-vendor-animation-duration: 3s;
-vendor-animation-delay: 1s;
}
.reallyslow {
-vendor-animation-duration: 6s;
-vendor-animation-delay: 3s;
}
Example 2: jQuery Aniview
<div class="aniview" data-av-animation="slideInRight"></div>
Example 3: jQuery Aniview
var options = {
animateThreshold: 100,
scrollPollInterval: 20
}
$('.aniview').AniView(options);
Example 4: jQuery Aniview
$('.aniview').AniView();