• Your search turned up 0 results. Opps There are no result found.
Viho-Animation Aos Animation
AOS Example animation
Init AOS
// The Below Function is example of how to initlize reveal
<script>
AOS.init();
< /script >
How to use it?
All you have to do is to add data-aos attribute to html element, like so:
< div data-aos="animation_name" >
Advanced settings
These settings can be set both on certain elements, or as default while initializing script (in options object without data- part).
AttributeDescriptionExample valueDefault value
data-aos-offsetChange offset to trigger animations sooner or later (px)200120
data-aos-duration*Duration of animation (ms)600400
data-aos-easingChoose timing function to ease elements in different waysease-in-sineease
data-aos-delayDelay animation (ms)3000
data-aos-anchorAnchor element, whose offset will be counted to trigger animation instead of actual elements offset#selectornull
data-aos-anchor-placementAnchor placement - which one position of element on the screen should trigger animation top-centertop-bottom
data-aos-onceChoose wheter animation should fire once, or every time you scroll up/down to element truefalse
Animation
There are serveral predefined animations you can use already:
  • Fade animations:
    • fade
    • fade-up
    • fade-down
    • fade-left
    • fade-right
    • fade-up-right
    • fade-up-left
    • fade-down-right
    • fade-down-left
  • Flip animations:
    • flip-up
    • flip-down
    • flip-left
    • flip-right
  • Slide animations:
    • slide-up
    • slide-down
    • slide-left
    • slide-right
  • Zoom animations:
    • zoom-in
    • zoom-in-up
    • zoom-in-down
    • zoom-in-left
    • zoom-in-right
    • zoom-out
    • zoom-out-up
    • zoom-out-down
    • zoom-out-left
    • zoom-out-right
Anchor placement:
  • top-bottom
  • top-center
  • top-top
  • center-bottom
  • center-center
  • center-top
  • bottom-bottom
  • bottom-center
  • bottom-top
Easing functions:
  • linear
  • ease
  • ease-in
  • ease-out
  • ease-in-out
  • ease-in-back
  • ease-out-back
  • ease-in-out-back
  • ease-in-sine
  • ease-out-sine
  • ease-in-out-sine
  • ease-in-quad
  • ease-out-quad
  • ease-in-out-quad
  • ease-in-cubic
  • ease-out-cubic
  • ease-in-out-cubic
  • ease-in-quart
  • ease-out-quart
  • ease-in-out-quart

Hand crafted & made with