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.
| 12345678910111213141516 |
- /**
- * Timeline
- */
-
- 'use strict';
-
- (function () {
- // Init Animation on scroll
- AOS.init({
- disable: function () {
- const maxWidth = 1024;
- return window.innerWidth < maxWidth;
- },
- once: true
- });
- })();
|