Guest User

Untitled

a guest
Oct 23rd, 2017
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. /* ---------- link ---------- */
  2.  
  3. <link rel="stylesheet" href="css/aos.css" />
  4.  
  5. <script src="js/aos.js"></script>
  6.  
  7.  
  8. /* ---------- init ---------- */
  9.  
  10. AOS.init();
  11.  
  12.  
  13. /* ---------- recalculate offsets ---------- */
  14.  
  15. $(window).resize(function() {
  16. AOS.refresh();
  17. });
  18.  
  19.  
  20. /* ---------- once animation ---------- */
  21.  
  22. $('*[data-aos]').attr('data-aos-once', true);
  23.  
  24.  
  25. /* ---------- all attributes ---------- */
  26.  
  27. data-aos="fade-up" data-aos-duration="500" data-aos-delay="0" data-aos-easing="ease-out" data-aos-offset="0"
  28.  
  29. //optional attributes
  30.  
  31. data-aos-anchor="#selector" data-aos-anchor-placement="top-center"
  32.  
  33.  
  34. /* ---------- anchor placements ---------- */
  35.  
  36. top-bottom
  37. top-center
  38. top-top
  39. center-bottom
  40. center-center
  41. center-top
  42. bottom-bottom
  43. bottom-center
  44. bottom-top
  45.  
  46.  
  47. /* ---------- animations ---------- */
  48.  
  49.  
  50. fade
  51. fade-up
  52. fade-down
  53. fade-left
  54. fade-right
  55. fade-up-right
  56. fade-up-left
  57. fade-down-right
  58. fade-down-left
  59.  
  60. flip-up
  61. flip-down
  62. flip-left
  63. flip-right
  64.  
  65. slide-up
  66. slide-down
  67. slide-left
  68. slide-right
  69.  
  70. zoom-in
  71. zoom-in-up
  72. zoom-in-down
  73. zoom-in-left
  74. zoom-in-right
  75. zoom-out
  76. zoom-out-up
  77. zoom-out-down
  78. zoom-out-left
  79. zoom-out-right
  80.  
  81.  
  82. /* ---------- easing functions ---------- */
  83.  
  84. linear
  85. ease
  86. ease-in
  87. ease-out
  88. ease-in-out
  89. ease-in-back
  90. ease-out-back
  91. ease-in-out-back
  92. ease-in-sine
  93. ease-out-sine
  94. ease-in-out-sine
  95. ease-in-quad
  96. ease-out-quad
  97. ease-in-out-quad
  98. ease-in-cubic
  99. ease-out-cubic
  100. ease-in-out-cubic
  101. ease-in-quart
  102. ease-out-quart
  103. ease-in-out-quart
Add Comment
Please, Sign In to add comment