설명 없음
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

extended-ui-timeline.js 227B

12345678910111213141516
  1. /**
  2. * Timeline
  3. */
  4. 'use strict';
  5. (function () {
  6. // Init Animation on scroll
  7. AOS.init({
  8. disable: function () {
  9. const maxWidth = 1024;
  10. return window.innerWidth < maxWidth;
  11. },
  12. once: true
  13. });
  14. })();