During his earth period, man experiences the blissful feeling of being fashioned into such forms. The absorption of the watery parts is felt in the soul as an accession of force, or inner strength.
├── .gitignore ├── .gitattributes ├── src ├── img │ ├── 1.jpg │ ├── 10.jpg │ ├── 11.jpg │ ├── 12.jpg │ ├── 13.jpg │ ├── 14.jpg │ ├── 15.jpg │ ├── 16.jpg │ ├── 17.jpg │ ├── 18.jpg │ ├── 19.jpg │ ├── 2.jpg │ ├── 20.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── 5.jpg │ ├── 6.jpg │ ├── 7.jpg │ ├── 8.jpg │ └── 9.jpg ├── favicon.ico ├── js │ ├── gallery.js │ ├── menuItem.js │ ├── index.js │ ├── utils.js │ └── menu.js ├── index.html └── css │ └── base.css ├── dist ├── 1.80b98c5b.jpg ├── 2.be0b6e97.jpg ├── 3.1667f2fd.jpg ├── 4.a242a4db.jpg ├── 5.cec98852.jpg ├── 6.63a71a70.jpg ├── 7.febd1f9e.jpg ├── 8.1ec50be9.jpg ├── 9.42343a9c.jpg ├── 10.09b8babf.jpg ├── 11.6bf710ad.jpg ├── 12.bd7243dc.jpg ├── 13.eaca2609.jpg ├── 14.8a0d313c.jpg ├── 15.9d1ab7d5.jpg ├── 16.3a8d5f7d.jpg ├── 17.5d19143b.jpg ├── 18.145b6e0b.jpg ├── 19.4e8371a2.jpg ├── 20.cb743775.jpg ├── favicon.61719396.ico ├── index.html ├── index.320bd6f3.css └── index.cad48f07.js ├── package.json ├── README.md └── LICENSE /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /.cache 3 | /parcel-cache 4 | package-lock.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /src/img/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/InlineToMenuLink/HEAD/src/img/1.jpg -------------------------------------------------------------------------------- /src/img/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/InlineToMenuLink/HEAD/src/img/10.jpg -------------------------------------------------------------------------------- /src/img/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/InlineToMenuLink/HEAD/src/img/11.jpg -------------------------------------------------------------------------------- /src/img/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/InlineToMenuLink/HEAD/src/img/12.jpg -------------------------------------------------------------------------------- /src/img/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/InlineToMenuLink/HEAD/src/img/13.jpg -------------------------------------------------------------------------------- /src/img/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/InlineToMenuLink/HEAD/src/img/14.jpg -------------------------------------------------------------------------------- /src/img/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/InlineToMenuLink/HEAD/src/img/15.jpg -------------------------------------------------------------------------------- /src/img/16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/InlineToMenuLink/HEAD/src/img/16.jpg -------------------------------------------------------------------------------- /src/img/17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/InlineToMenuLink/HEAD/src/img/17.jpg -------------------------------------------------------------------------------- /src/img/18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/InlineToMenuLink/HEAD/src/img/18.jpg -------------------------------------------------------------------------------- /src/img/19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/InlineToMenuLink/HEAD/src/img/19.jpg -------------------------------------------------------------------------------- /src/img/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/InlineToMenuLink/HEAD/src/img/2.jpg -------------------------------------------------------------------------------- /src/img/20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/InlineToMenuLink/HEAD/src/img/20.jpg -------------------------------------------------------------------------------- /src/img/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/InlineToMenuLink/HEAD/src/img/3.jpg -------------------------------------------------------------------------------- /src/img/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/InlineToMenuLink/HEAD/src/img/4.jpg -------------------------------------------------------------------------------- /src/img/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/InlineToMenuLink/HEAD/src/img/5.jpg -------------------------------------------------------------------------------- /src/img/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/InlineToMenuLink/HEAD/src/img/6.jpg -------------------------------------------------------------------------------- /src/img/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/InlineToMenuLink/HEAD/src/img/7.jpg -------------------------------------------------------------------------------- /src/img/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/InlineToMenuLink/HEAD/src/img/8.jpg -------------------------------------------------------------------------------- /src/img/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/InlineToMenuLink/HEAD/src/img/9.jpg -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/InlineToMenuLink/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /dist/1.80b98c5b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/InlineToMenuLink/HEAD/dist/1.80b98c5b.jpg -------------------------------------------------------------------------------- /dist/2.be0b6e97.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/InlineToMenuLink/HEAD/dist/2.be0b6e97.jpg -------------------------------------------------------------------------------- /dist/3.1667f2fd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/InlineToMenuLink/HEAD/dist/3.1667f2fd.jpg -------------------------------------------------------------------------------- /dist/4.a242a4db.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/InlineToMenuLink/HEAD/dist/4.a242a4db.jpg -------------------------------------------------------------------------------- /dist/5.cec98852.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/InlineToMenuLink/HEAD/dist/5.cec98852.jpg -------------------------------------------------------------------------------- /dist/6.63a71a70.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/InlineToMenuLink/HEAD/dist/6.63a71a70.jpg -------------------------------------------------------------------------------- /dist/7.febd1f9e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/InlineToMenuLink/HEAD/dist/7.febd1f9e.jpg -------------------------------------------------------------------------------- /dist/8.1ec50be9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/InlineToMenuLink/HEAD/dist/8.1ec50be9.jpg -------------------------------------------------------------------------------- /dist/9.42343a9c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/InlineToMenuLink/HEAD/dist/9.42343a9c.jpg -------------------------------------------------------------------------------- /dist/10.09b8babf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/InlineToMenuLink/HEAD/dist/10.09b8babf.jpg -------------------------------------------------------------------------------- /dist/11.6bf710ad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/InlineToMenuLink/HEAD/dist/11.6bf710ad.jpg -------------------------------------------------------------------------------- /dist/12.bd7243dc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/InlineToMenuLink/HEAD/dist/12.bd7243dc.jpg -------------------------------------------------------------------------------- /dist/13.eaca2609.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/InlineToMenuLink/HEAD/dist/13.eaca2609.jpg -------------------------------------------------------------------------------- /dist/14.8a0d313c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/InlineToMenuLink/HEAD/dist/14.8a0d313c.jpg -------------------------------------------------------------------------------- /dist/15.9d1ab7d5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/InlineToMenuLink/HEAD/dist/15.9d1ab7d5.jpg -------------------------------------------------------------------------------- /dist/16.3a8d5f7d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/InlineToMenuLink/HEAD/dist/16.3a8d5f7d.jpg -------------------------------------------------------------------------------- /dist/17.5d19143b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/InlineToMenuLink/HEAD/dist/17.5d19143b.jpg -------------------------------------------------------------------------------- /dist/18.145b6e0b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/InlineToMenuLink/HEAD/dist/18.145b6e0b.jpg -------------------------------------------------------------------------------- /dist/19.4e8371a2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/InlineToMenuLink/HEAD/dist/19.4e8371a2.jpg -------------------------------------------------------------------------------- /dist/20.cb743775.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/InlineToMenuLink/HEAD/dist/20.cb743775.jpg -------------------------------------------------------------------------------- /dist/favicon.61719396.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/InlineToMenuLink/HEAD/dist/favicon.61719396.ico -------------------------------------------------------------------------------- /src/js/gallery.js: -------------------------------------------------------------------------------- 1 | export class Gallery { 2 | constructor(el) { 3 | this.DOM = {el: el}; 4 | this.DOM.images = this.DOM.el.querySelectorAll('.gallery__img'); 5 | } 6 | } -------------------------------------------------------------------------------- /src/js/menuItem.js: -------------------------------------------------------------------------------- 1 | import { Gallery } from './gallery'; 2 | 3 | export class MenuItem { 4 | constructor(item) { 5 | this.DOM = {item: item}; 6 | this.DOM.gallery = document.querySelector(this.DOM.item.href.substring(this.DOM.item.href.indexOf('#'))); 7 | this.gallery = new Gallery(this.DOM.gallery); 8 | } 9 | } -------------------------------------------------------------------------------- /src/js/index.js: -------------------------------------------------------------------------------- 1 | import { preloadImages } from './utils'; 2 | import { Menu } from './menu'; 3 | import 'splitting/dist/splitting.css'; 4 | import 'splitting/dist/splitting-cells.css'; 5 | import Splitting from 'splitting'; 6 | 7 | // initialize Splitting 8 | const splitting = Splitting({by: 'words'}); 9 | 10 | preloadImages().then(() => { 11 | document.body.classList.remove('loading'); 12 | new Menu(); 13 | }); -------------------------------------------------------------------------------- /src/js/utils.js: -------------------------------------------------------------------------------- 1 | const imagesLoaded = require('imagesloaded'); 2 | 3 | // Map number x from range [a, b] to [c, d] 4 | const map = (x, a, b, c, d) => (x - a) * (d - c) / (b - a) + c; 5 | 6 | // viewport size 7 | const calcWinsize = () => { 8 | return {width: window.innerWidth, height: window.innerHeight}; 9 | }; 10 | 11 | // preload images 12 | const preloadImages = (selector = 'img') => { 13 | return new Promise((resolve, reject) => { 14 | imagesLoaded(document.querySelectorAll(selector), resolve); 15 | }); 16 | }; 17 | 18 | export {map, calcWinsize, preloadImages}; -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "InlineToMenuLink", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "dist/index.html", 6 | "scripts": { 7 | "start": "parcel src/index.html --open", 8 | "clean": "rm -rf dist/*", 9 | "build:parcel": "parcel build src/index.html --no-content-hash --no-source-maps --public-url ./", 10 | "build": "npm run clean && npm run build:parcel" 11 | }, 12 | "repository": { 13 | "type": "git", 14 | "url": "git://github.com/codrops/[NAME].git" 15 | }, 16 | "keywords": [], 17 | "author": "Codrops", 18 | "license": "MIT", 19 | "homepage": "https://tympanus.net/codrops", 20 | "bugs": { 21 | "url": "https://github.com/codrops/[NAME]/issues" 22 | }, 23 | "devDependencies": { 24 | "parcel": "latest" 25 | }, 26 | "dependencies": { 27 | "gsap": "^3.6.1", 28 | "imagesloaded": "^4.1.4", 29 | "splitting": "^1.0.6" 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Inline to Menu Link Animation 2 | 3 | An experimental inline-to-menu-link animation based on a concept by Matthew Hall. 4 | 5 |  6 | 7 | [Article on Codrops](https://tympanus.net/codrops/?p=55044) 8 | 9 | [Demo](http://tympanus.net/Development/InlineToMenuLink/) 10 | 11 | 12 | ## Installation 13 | 14 | Install dependencies: 15 | 16 | ``` 17 | npm install 18 | ``` 19 | 20 | Compile the code for development and start a local server: 21 | 22 | ``` 23 | npm start 24 | ``` 25 | 26 | Create the build: 27 | 28 | ``` 29 | npm run build 30 | ``` 31 | 32 | ## Credits 33 | 34 | - Images from [Unsplash](https://unsplash.com/) 35 | 36 | ## Misc 37 | 38 | Follow *Author*: [Twitter](), [Dribbble](), [Google+](), [GitHub]() 39 | 40 | Follow Codrops: [Twitter](http://www.twitter.com/codrops), [Facebook](http://www.facebook.com/codrops), [GitHub](https://github.com/codrops), [Instagram](https://www.instagram.com/codropsss/) 41 | 42 | ## License 43 | [MIT](LICENSE) 44 | 45 | Made with :blue_heart: by [Codrops](http://www.codrops.com) 46 | 47 | 48 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2009 - 2021 [Codrops](https://tympanus.net/codrops) 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- 1 |
During his earth period, man experiences the blissful feeling of being fashioned into such forms. The absorption of the watery parts is felt in the soul as an accession of force, or inner strength.
Based on "Image Carousel" by Matthew Hall
26 | @codrops 27 |Select a category
28 | 29 |32 | During his earth period, man experiences the blissful feeling of being fashioned into such forms. The absorption of the watery parts is felt in the soul as an accession of force, or inner strength.33 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 | e)for(r=t._first;r&&r._start<=i;){if(!r._dur&&"isPause"===r.data&&r._start>e)return r;r=r._next}else for(r=t._last;r&&r._start>=i;){if(!r._dur&&"isPause"===r.data&&r._start 0)&&this._prom()))}}else!function(t,e,i,r){var n,s,a,o=t.ratio,u=e<0||!e&&(!t._start&&ie(t)||(t._ts<0||t._dp._ts<0)&&"isFromStart"!==t.data&&"isStart"!==t.data)?0:1,h=t._rDelay,l=0;if(h&&t._repeat&&(l=ue(0,t._tDur,e),s=Qt(l,h),a=Qt(t._tTime,h),t._yoyo&&1&s&&(u=1-u),s!==a&&(o=1-u,t.vars.repeatRefresh&&t._initted&&t.invalidate())),u!==o||r||t._zTime===N||!e&&t._zTime){if(!t._initted&&ee(t,e,r,i))return;for(a=t._zTime,t._zTime=e||(i?N:0),i||(i=e&&!a),t.ratio=u,t._from&&(u=1-u),t._time=0,t._tTime=l,n=t._pt;n;)n.r(u,n.d),n=n._next;t._startAt&&e<0&&t._startAt.render(e,!0,!0),t._onUpdate&&!i&&xe(t,"onUpdate"),l&&t._repeat&&!i&&t.parent&&xe(t,"onRepeat"),(e>=t._tDur||e<0)&&t.ratio===u&&(u&&Gt(t,1),i||(xe(t,u?"onComplete":"onReverseComplete",!0),t._prom&&t._prom()))}else t._zTime||(t._zTime=e)}(this,t,e,i);return this},i.targets=function(){return this._targets},i.invalidate=function(){return this._pt=this._op=this._startAt=this._onUpdate=this._lazy=this.ratio=0,this._ptLookup=[],this.timeline&&this.timeline.invalidate(),t.prototype.invalidate.call(this)},i.kill=function(t,e){if(void 0===e&&(e="all"),!(t||e&&"all"!==e))return this._lazy=this._pt=0,this.parent?be(this):this;if(this.timeline){var i=this.timeline.totalDuration();return this.timeline.killTweensOf(t,e,Ze&&!0!==Ze.vars.overwrite)._first||be(this),this.parent&&i!==this.timeline.totalDuration()&&re(this,this._dur*this.timeline._tDur/i,0,1),this}var r,n,s,a,o,u,h,l=this._targets,f=t?ce(t):l,c=this._ptLookup,p=this._pt;if((!e||"all"===e)&&function(t,e){for(var i=t.length,r=i===e.length;r&&i--&&t[i]===e[i];);return i<0}(l,f))return"all"===e&&(this._pt=0),be(this);for(r=this._op=this._op||[],"all"!==e&&(V(e)&&(o={},At(e,(function(t){return o[t]=1})),e=o),e=function(t,e){var i,r,n,s,a=t[0]?Dt(t[0]).harness:0,o=a&&a.aliases;if(!o)return e;for(r in i=Ft({},e),o)if(r in i)for(n=(s=o[r].split(",")).length;n--;)i[s[n]]=i[r];return i}(l,e)),h=l.length;h--;)if(~f.indexOf(l[h]))for(o in n=c[h],"all"===e?(r[h]=e,a=n,s={}):(s=r[h]=r[h]||{},a=e),a)(u=n&&n[o])&&("kill"in u.d&&!0!==u.d.kill(o)||Yt(this,u,"_pt"),delete n[o]),"all"!==s&&(s[o]=1);return this._initted&&!this._pt&&p&&be(this),this},e.to=function(t,i){return new e(t,i,arguments[2])},e.from=function(t,i){return new e(t,Ct(arguments,1))},e.delayedCall=function(t,i,r,n){return new e(i,0,{immediateRender:!1,lazy:!1,overwrite:!1,delay:t,onComplete:i,onReverseComplete:i,onCompleteParams:r,onReverseCompleteParams:r,callbackScope:n})},e.fromTo=function(t,i,r){return new e(t,Ct(arguments,2))},e.set=function(t,i){return i.duration=0,i.repeatDelay||(i.repeat=0),new e(t,i)},e.killTweensOf=function(t,e,i){return l.killTweensOf(t,e,i)},e}(Qe);Bt(ni.prototype,{_targets:[],_lazy:0,_startAt:0,_op:0,_onInit:0}),At("staggerTo,staggerFrom,staggerFromTo",(function(t){ni[t]=function(){var e=new He,i=le.call(arguments,0);return i.splice("staggerFromTo"===t?5:4,0,0),e[t].apply(e,i)}}));var si=function(t,e,i){return t[e]=i},ai=function(t,e,i){return t[e](i)},oi=function(t,e,i,r){return t[e](r.fp,i)},ui=function(t,e,i){return t.setAttribute(e,i)},hi=function(t,e){return Q(t[e])?ai:Z(t[e])&&t.setAttribute?ui:si},li=function(t,e){return e.set(e.t,e.p,Math.round(1e4*(e.s+e.c*t))/1e4,e)},fi=function(t,e){return e.set(e.t,e.p,!!(e.s+e.c*t),e)},ci=function(t,e){var i=e._pt,r="";if(!t&&e.b)r=e.b;else if(1===t&&e.e)r=e.e;else{for(;i;)r=i.p+(i.m?i.m(i.s+i.c*t):Math.round(1e4*(i.s+i.c*t))/1e4)+r,i=i._next;r+=e.c}e.set(e.t,e.p,r,e)},pi=function(t,e){for(var i=e._pt;i;)i.r(t,i.d),i=i._next},di=function(t,e,i,r){for(var n,s=this._pt;s;)n=s._next,s.p===r&&s.modifier(t,e,i),s=n},_i=function(t){for(var e,i,r=this._pt;r;)i=r._next,r.p===t&&!r.op||r.op===t?Yt(this,r,"_pt"):r.dep||(e=1),r=i;return!e},mi=function(t,e,i,r){r.mSet(t,e,r.m.call(r.tween,i,r.mt),r)},gi=function(t){for(var e,i,r,n,s=t._pt;s;){for(e=s._next,i=r;i&&i.pr>s.pr;)i=i._next;(s._prev=i?i._prev:n)?s._prev._next=s:r=s,(s._next=i)?i._prev=s:n=s,s=e}t._pt=r},vi=function(){function t(t,e,i,r,n,s,a,o,u){this.t=e,this.s=r,this.c=n,this.p=i,this.r=s||li,this.d=a||this,this.set=o||si,this.pr=u||0,this._next=t,t&&(t._prev=this)}return t.prototype.modifier=function(t,e,i){this.mSet=this.mSet||this.set,this.set=mi,this.m=t,this.mt=i,this.tween=e},t}();At(Tt+"parent,duration,ease,delay,overwrite,runBackwards,startAt,yoyo,immediateRender,repeat,repeatDelay,data,paused,reversed,lazy,callbackScope,stringFilter,id,yoyoEase,stagger,inherit,repeatRefresh,keyframes,autoRevert,scrollTrigger",(function(t){return gt[t]=1})),lt.TweenMax=lt.TweenLite=ni,lt.TimelineLite=lt.TimelineMax=He,l=new He({sortChildren:!1,defaults:F,autoRemoveChildren:!0,id:"root",smoothChildTiming:!0}),R.stringFilter=Le;var yi={registerPlugin:function(){for(var t=arguments.length,e=new Array(t),i=0;i