htui-yllkbz 1.3.22 → 1.3.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/htui.common.js +1438 -3
- package/lib/htui.common.js.gz +0 -0
- package/lib/htui.umd.js +1438 -3
- package/lib/htui.umd.js.gz +0 -0
- package/lib/htui.umd.min.js +27 -4
- package/lib/htui.umd.min.js.gz +0 -0
- package/package.json +1 -1
- package/src/packages/HtTwee/index.ts +22 -0
- package/src/packages/HtTwee/index.vue +30 -0
- package/src/packages/index.ts +4 -3
- package/src/plugins/EasePack.min.js +22 -0
- package/src/plugins/HtTwee.js +189 -0
- package/src/plugins/TweenLite.min.js +25 -0
- package/src/views/About.vue +4 -1
package/lib/htui.umd.js
CHANGED
|
@@ -215,6 +215,181 @@ module.exports.f = function getOwnPropertyNames(it) {
|
|
|
215
215
|
};
|
|
216
216
|
|
|
217
217
|
|
|
218
|
+
/***/ }),
|
|
219
|
+
|
|
220
|
+
/***/ "05ed":
|
|
221
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
222
|
+
|
|
223
|
+
/* WEBPACK VAR INJECTION */(function(global) {__webpack_require__("d81d");
|
|
224
|
+
|
|
225
|
+
/* eslint-disable @typescript-eslint/no-empty-function */
|
|
226
|
+
|
|
227
|
+
/*
|
|
228
|
+
* @Descripttion:
|
|
229
|
+
* @version:
|
|
230
|
+
* @Author: hutao
|
|
231
|
+
* @Date: 2022-04-29 16:32:05
|
|
232
|
+
* @LastEditors: hutao
|
|
233
|
+
* @LastEditTime: 2022-04-29 16:57:19
|
|
234
|
+
*/
|
|
235
|
+
|
|
236
|
+
/* eslint-disable no-var */
|
|
237
|
+
|
|
238
|
+
/*!
|
|
239
|
+
* VERSION: beta 1.9.4
|
|
240
|
+
* DATE: 2014-07-17
|
|
241
|
+
* UPDATES AND DOCS AT: http://www.greensock.com
|
|
242
|
+
*
|
|
243
|
+
* @license Copyright (c) 2008-2014, GreenSock. All rights reserved.
|
|
244
|
+
* This work is subject to the terms at http://www.greensock.com/terms_of_use.html or for
|
|
245
|
+
* Club GreenSock members, the software agreement that was issued with your membership.
|
|
246
|
+
*
|
|
247
|
+
* @author: Jack Doyle, jack@greensock.com
|
|
248
|
+
**/
|
|
249
|
+
var _gsScope = true && module.exports && "undefined" != typeof global ? global : this || window;
|
|
250
|
+
|
|
251
|
+
(_gsScope._gsQueue || (_gsScope._gsQueue = [])).push(function () {
|
|
252
|
+
"use strict";
|
|
253
|
+
|
|
254
|
+
_gsScope._gsDefine("easing.Back", ["easing.Ease"], function (t) {
|
|
255
|
+
var e,
|
|
256
|
+
i,
|
|
257
|
+
s,
|
|
258
|
+
r = _gsScope.GreenSockGlobals || _gsScope,
|
|
259
|
+
n = r.com.greensock,
|
|
260
|
+
a = 2 * Math.PI,
|
|
261
|
+
o = Math.PI / 2,
|
|
262
|
+
h = n._class,
|
|
263
|
+
l = function l(e, i) {
|
|
264
|
+
var s = h("easing." + e, function () {}, !0),
|
|
265
|
+
r = s.prototype = new t();
|
|
266
|
+
return r.constructor = s, r.getRatio = i, s;
|
|
267
|
+
},
|
|
268
|
+
_ = t.register || function () {},
|
|
269
|
+
u = function u(t, e, i, s) {
|
|
270
|
+
var r = h("easing." + t, {
|
|
271
|
+
easeOut: new e(),
|
|
272
|
+
easeIn: new i(),
|
|
273
|
+
easeInOut: new s()
|
|
274
|
+
}, !0);
|
|
275
|
+
return _(r, t), r;
|
|
276
|
+
},
|
|
277
|
+
c = function c(t, e, i) {
|
|
278
|
+
this.t = t, this.v = e, i && (this.next = i, i.prev = this, this.c = i.v - e, this.gap = i.t - t);
|
|
279
|
+
},
|
|
280
|
+
p = function p(e, i) {
|
|
281
|
+
var s = h("easing." + e, function (t) {
|
|
282
|
+
this._p1 = t || 0 === t ? t : 1.70158, this._p2 = 1.525 * this._p1;
|
|
283
|
+
}, !0),
|
|
284
|
+
r = s.prototype = new t();
|
|
285
|
+
return r.constructor = s, r.getRatio = i, r.config = function (t) {
|
|
286
|
+
return new s(t);
|
|
287
|
+
}, s;
|
|
288
|
+
},
|
|
289
|
+
f = u("Back", p("BackOut", function (t) {
|
|
290
|
+
return (t -= 1) * t * ((this._p1 + 1) * t + this._p1) + 1;
|
|
291
|
+
}), p("BackIn", function (t) {
|
|
292
|
+
return t * t * ((this._p1 + 1) * t - this._p1);
|
|
293
|
+
}), p("BackInOut", function (t) {
|
|
294
|
+
return 1 > (t *= 2) ? .5 * t * t * ((this._p2 + 1) * t - this._p2) : .5 * ((t -= 2) * t * ((this._p2 + 1) * t + this._p2) + 2);
|
|
295
|
+
})),
|
|
296
|
+
m = h("easing.SlowMo", function (t, e, i) {
|
|
297
|
+
e = e || 0 === e ? e : .7, null == t ? t = .7 : t > 1 && (t = 1), this._p = 1 !== t ? e : 0, this._p1 = (1 - t) / 2, this._p2 = t, this._p3 = this._p1 + this._p2, this._calcEnd = i === !0;
|
|
298
|
+
}, !0),
|
|
299
|
+
d = m.prototype = new t();
|
|
300
|
+
|
|
301
|
+
return d.constructor = m, d.getRatio = function (t) {
|
|
302
|
+
var e = t + (.5 - t) * this._p;
|
|
303
|
+
return this._p1 > t ? this._calcEnd ? 1 - (t = 1 - t / this._p1) * t : e - (t = 1 - t / this._p1) * t * t * t * e : t > this._p3 ? this._calcEnd ? 1 - (t = (t - this._p3) / this._p1) * t : e + (t - e) * (t = (t - this._p3) / this._p1) * t * t * t : this._calcEnd ? 1 : e;
|
|
304
|
+
}, m.ease = new m(.7, .7), d.config = m.config = function (t, e, i) {
|
|
305
|
+
return new m(t, e, i);
|
|
306
|
+
}, e = h("easing.SteppedEase", function (t) {
|
|
307
|
+
t = t || 1, this._p1 = 1 / t, this._p2 = t + 1;
|
|
308
|
+
}, !0), d = e.prototype = new t(), d.constructor = e, d.getRatio = function (t) {
|
|
309
|
+
return 0 > t ? t = 0 : t >= 1 && (t = .999999999), (this._p2 * t >> 0) * this._p1;
|
|
310
|
+
}, d.config = e.config = function (t) {
|
|
311
|
+
return new e(t);
|
|
312
|
+
}, i = h("easing.RoughEase", function (e) {
|
|
313
|
+
e = e || {};
|
|
314
|
+
|
|
315
|
+
for (var i, s, r, n, a, o, h = e.taper || "none", l = [], _ = 0, u = 0 | (e.points || 20), p = u, f = e.randomize !== !1, m = e.clamp === !0, d = e.template instanceof t ? e.template : null, g = "number" == typeof e.strength ? .4 * e.strength : .4; --p > -1;) {
|
|
316
|
+
i = f ? Math.random() : 1 / u * p, s = d ? d.getRatio(i) : i, "none" === h ? r = g : "out" === h ? (n = 1 - i, r = n * n * g) : "in" === h ? r = i * i * g : .5 > i ? (n = 2 * i, r = .5 * n * n * g) : (n = 2 * (1 - i), r = .5 * n * n * g), f ? s += Math.random() * r - .5 * r : p % 2 ? s += .5 * r : s -= .5 * r, m && (s > 1 ? s = 1 : 0 > s && (s = 0)), l[_++] = {
|
|
317
|
+
x: i,
|
|
318
|
+
y: s
|
|
319
|
+
};
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
for (l.sort(function (t, e) {
|
|
323
|
+
return t.x - e.x;
|
|
324
|
+
}), o = new c(1, 1, null), p = u; --p > -1;) {
|
|
325
|
+
a = l[p], o = new c(a.x, a.y, o);
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
this._prev = new c(0, 0, 0 !== o.t ? o : o.next);
|
|
329
|
+
}, !0), d = i.prototype = new t(), d.constructor = i, d.getRatio = function (t) {
|
|
330
|
+
var e = this._prev;
|
|
331
|
+
|
|
332
|
+
if (t > e.t) {
|
|
333
|
+
for (; e.next && t >= e.t;) {
|
|
334
|
+
e = e.next;
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
e = e.prev;
|
|
338
|
+
} else for (; e.prev && e.t >= t;) {
|
|
339
|
+
e = e.prev;
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
return this._prev = e, e.v + (t - e.t) / e.gap * e.c;
|
|
343
|
+
}, d.config = function (t) {
|
|
344
|
+
return new i(t);
|
|
345
|
+
}, i.ease = new i(), u("Bounce", l("BounceOut", function (t) {
|
|
346
|
+
return 1 / 2.75 > t ? 7.5625 * t * t : 2 / 2.75 > t ? 7.5625 * (t -= 1.5 / 2.75) * t + .75 : 2.5 / 2.75 > t ? 7.5625 * (t -= 2.25 / 2.75) * t + .9375 : 7.5625 * (t -= 2.625 / 2.75) * t + .984375;
|
|
347
|
+
}), l("BounceIn", function (t) {
|
|
348
|
+
return 1 / 2.75 > (t = 1 - t) ? 1 - 7.5625 * t * t : 2 / 2.75 > t ? 1 - (7.5625 * (t -= 1.5 / 2.75) * t + .75) : 2.5 / 2.75 > t ? 1 - (7.5625 * (t -= 2.25 / 2.75) * t + .9375) : 1 - (7.5625 * (t -= 2.625 / 2.75) * t + .984375);
|
|
349
|
+
}), l("BounceInOut", function (t) {
|
|
350
|
+
var e = .5 > t;
|
|
351
|
+
return t = e ? 1 - 2 * t : 2 * t - 1, t = 1 / 2.75 > t ? 7.5625 * t * t : 2 / 2.75 > t ? 7.5625 * (t -= 1.5 / 2.75) * t + .75 : 2.5 / 2.75 > t ? 7.5625 * (t -= 2.25 / 2.75) * t + .9375 : 7.5625 * (t -= 2.625 / 2.75) * t + .984375, e ? .5 * (1 - t) : .5 * t + .5;
|
|
352
|
+
})), u("Circ", l("CircOut", function (t) {
|
|
353
|
+
return Math.sqrt(1 - (t -= 1) * t);
|
|
354
|
+
}), l("CircIn", function (t) {
|
|
355
|
+
return -(Math.sqrt(1 - t * t) - 1);
|
|
356
|
+
}), l("CircInOut", function (t) {
|
|
357
|
+
return 1 > (t *= 2) ? -.5 * (Math.sqrt(1 - t * t) - 1) : .5 * (Math.sqrt(1 - (t -= 2) * t) + 1);
|
|
358
|
+
})), s = function s(e, i, _s) {
|
|
359
|
+
var r = h("easing." + e, function (t, e) {
|
|
360
|
+
this._p1 = t || 1, this._p2 = e || _s, this._p3 = this._p2 / a * (Math.asin(1 / this._p1) || 0);
|
|
361
|
+
}, !0),
|
|
362
|
+
n = r.prototype = new t();
|
|
363
|
+
return n.constructor = r, n.getRatio = i, n.config = function (t, e) {
|
|
364
|
+
return new r(t, e);
|
|
365
|
+
}, r;
|
|
366
|
+
}, u("Elastic", s("ElasticOut", function (t) {
|
|
367
|
+
return this._p1 * Math.pow(2, -10 * t) * Math.sin((t - this._p3) * a / this._p2) + 1;
|
|
368
|
+
}, .3), s("ElasticIn", function (t) {
|
|
369
|
+
return -(this._p1 * Math.pow(2, 10 * (t -= 1)) * Math.sin((t - this._p3) * a / this._p2));
|
|
370
|
+
}, .3), s("ElasticInOut", function (t) {
|
|
371
|
+
return 1 > (t *= 2) ? -.5 * this._p1 * Math.pow(2, 10 * (t -= 1)) * Math.sin((t - this._p3) * a / this._p2) : .5 * this._p1 * Math.pow(2, -10 * (t -= 1)) * Math.sin((t - this._p3) * a / this._p2) + 1;
|
|
372
|
+
}, .45)), u("Expo", l("ExpoOut", function (t) {
|
|
373
|
+
return 1 - Math.pow(2, -10 * t);
|
|
374
|
+
}), l("ExpoIn", function (t) {
|
|
375
|
+
return Math.pow(2, 10 * (t - 1)) - .001;
|
|
376
|
+
}), l("ExpoInOut", function (t) {
|
|
377
|
+
return 1 > (t *= 2) ? .5 * Math.pow(2, 10 * (t - 1)) : .5 * (2 - Math.pow(2, -10 * (t - 1)));
|
|
378
|
+
})), u("Sine", l("SineOut", function (t) {
|
|
379
|
+
return Math.sin(t * o);
|
|
380
|
+
}), l("SineIn", function (t) {
|
|
381
|
+
return -Math.cos(t * o) + 1;
|
|
382
|
+
}), l("SineInOut", function (t) {
|
|
383
|
+
return -.5 * (Math.cos(Math.PI * t) - 1);
|
|
384
|
+
})), h("easing.EaseLookup", {
|
|
385
|
+
find: function find(e) {
|
|
386
|
+
return t.map[e];
|
|
387
|
+
}
|
|
388
|
+
}, !0), _(r.SlowMo, "SlowMo", "ease,"), _(i, "RoughEase", "ease,"), _(e, "SteppedEase", "ease,"), f;
|
|
389
|
+
}, !0);
|
|
390
|
+
}), _gsScope._gsDefine && _gsScope._gsQueue.pop()();
|
|
391
|
+
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__("c8ba")))
|
|
392
|
+
|
|
218
393
|
/***/ }),
|
|
219
394
|
|
|
220
395
|
/***/ "06cf":
|
|
@@ -345,6 +520,848 @@ utils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {
|
|
|
345
520
|
module.exports = Axios;
|
|
346
521
|
|
|
347
522
|
|
|
523
|
+
/***/ }),
|
|
524
|
+
|
|
525
|
+
/***/ "0ab0":
|
|
526
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
527
|
+
|
|
528
|
+
/* WEBPACK VAR INJECTION */(function(global) {var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;__webpack_require__("99af");
|
|
529
|
+
|
|
530
|
+
__webpack_require__("c975");
|
|
531
|
+
|
|
532
|
+
__webpack_require__("a15b");
|
|
533
|
+
|
|
534
|
+
__webpack_require__("d81d");
|
|
535
|
+
|
|
536
|
+
__webpack_require__("a434");
|
|
537
|
+
|
|
538
|
+
__webpack_require__("a9e3");
|
|
539
|
+
|
|
540
|
+
__webpack_require__("d3b7");
|
|
541
|
+
|
|
542
|
+
__webpack_require__("ac1f");
|
|
543
|
+
|
|
544
|
+
__webpack_require__("25f0");
|
|
545
|
+
|
|
546
|
+
__webpack_require__("1276");
|
|
547
|
+
|
|
548
|
+
var _typeof = __webpack_require__("7037");
|
|
549
|
+
|
|
550
|
+
/* eslint-disable @typescript-eslint/no-this-alias */
|
|
551
|
+
|
|
552
|
+
/* eslint-disable @typescript-eslint/no-empty-function */
|
|
553
|
+
|
|
554
|
+
/* eslint-disable prefer-spread */
|
|
555
|
+
|
|
556
|
+
/* eslint-disable @typescript-eslint/no-use-before-define */
|
|
557
|
+
|
|
558
|
+
/*
|
|
559
|
+
* @Descripttion:
|
|
560
|
+
* @version:
|
|
561
|
+
* @Author: hutao
|
|
562
|
+
* @Date: 2022-04-29 16:32:05
|
|
563
|
+
* @LastEditors: hutao
|
|
564
|
+
* @LastEditTime: 2022-04-29 16:56:50
|
|
565
|
+
*/
|
|
566
|
+
|
|
567
|
+
/* eslint-disable no-var */
|
|
568
|
+
|
|
569
|
+
/*!
|
|
570
|
+
* VERSION: 1.13.1
|
|
571
|
+
* DATE: 2014-07-22
|
|
572
|
+
* UPDATES AND DOCS AT: http://www.greensock.com
|
|
573
|
+
*
|
|
574
|
+
* @license Copyright (c) 2008-2014, GreenSock. All rights reserved.
|
|
575
|
+
* This work is subject to the terms at http://www.greensock.com/terms_of_use.html or for
|
|
576
|
+
* Club GreenSock members, the software agreement that was issued with your membership.
|
|
577
|
+
*
|
|
578
|
+
* @author: Jack Doyle, jack@greensock.com
|
|
579
|
+
*/
|
|
580
|
+
(function (t, e) {
|
|
581
|
+
"use strict";
|
|
582
|
+
|
|
583
|
+
var i = t.GreenSockGlobals = t.GreenSockGlobals || t;
|
|
584
|
+
|
|
585
|
+
if (!i.TweenLite) {
|
|
586
|
+
var s,
|
|
587
|
+
n,
|
|
588
|
+
r,
|
|
589
|
+
a,
|
|
590
|
+
o,
|
|
591
|
+
l = function l(t) {
|
|
592
|
+
var e,
|
|
593
|
+
s = t.split("."),
|
|
594
|
+
n = i;
|
|
595
|
+
|
|
596
|
+
for (e = 0; s.length > e; e++) {
|
|
597
|
+
n[s[e]] = n = n[s[e]] || {};
|
|
598
|
+
}
|
|
599
|
+
|
|
600
|
+
return n;
|
|
601
|
+
},
|
|
602
|
+
h = l("com.greensock"),
|
|
603
|
+
_ = 1e-10,
|
|
604
|
+
u = function u(t) {
|
|
605
|
+
var e,
|
|
606
|
+
i = [],
|
|
607
|
+
s = t.length;
|
|
608
|
+
|
|
609
|
+
for (e = 0; e !== s; i.push(t[e++])) {
|
|
610
|
+
;
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
return i;
|
|
614
|
+
},
|
|
615
|
+
f = function f() {},
|
|
616
|
+
m = function () {
|
|
617
|
+
var t = Object.prototype.toString,
|
|
618
|
+
e = t.call([]);
|
|
619
|
+
return function (i) {
|
|
620
|
+
return null != i && (i instanceof Array || "object" == _typeof(i) && !!i.push && t.call(i) === e);
|
|
621
|
+
};
|
|
622
|
+
}(),
|
|
623
|
+
p = {},
|
|
624
|
+
c = function c(s, n, r, a) {
|
|
625
|
+
this.sc = p[s] ? p[s].sc : [], p[s] = this, this.gsClass = null, this.func = r;
|
|
626
|
+
var o = [];
|
|
627
|
+
this.check = function (h) {
|
|
628
|
+
for (var _, u, f, m, d = n.length, v = d; --d > -1;) {
|
|
629
|
+
(_ = p[n[d]] || new c(n[d], [])).gsClass ? (o[d] = _.gsClass, v--) : h && _.sc.push(this);
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
if (0 === v && r) for (u = ("com.greensock." + s).split("."), f = u.pop(), m = l(u.join("."))[f] = this.gsClass = r.apply(r, o), a && (i[f] = m, true ? !(__WEBPACK_AMD_DEFINE_ARRAY__ = [], __WEBPACK_AMD_DEFINE_RESULT__ = (function () {
|
|
633
|
+
return m;
|
|
634
|
+
}).apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__),
|
|
635
|
+
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)) : undefined), d = 0; this.sc.length > d; d++) {
|
|
636
|
+
this.sc[d].check();
|
|
637
|
+
}
|
|
638
|
+
}, this.check(!0);
|
|
639
|
+
},
|
|
640
|
+
d = t._gsDefine = function (t, e, i, s) {
|
|
641
|
+
return new c(t, e, i, s);
|
|
642
|
+
},
|
|
643
|
+
v = h._class = function (t, e, i) {
|
|
644
|
+
return e = e || function () {}, d(t, [], function () {
|
|
645
|
+
return e;
|
|
646
|
+
}, i), e;
|
|
647
|
+
};
|
|
648
|
+
|
|
649
|
+
d.globals = i;
|
|
650
|
+
|
|
651
|
+
var g = [0, 0, 1, 1],
|
|
652
|
+
T = [],
|
|
653
|
+
y = v("easing.Ease", function (t, e, i, s) {
|
|
654
|
+
this._func = t, this._type = i || 0, this._power = s || 0, this._params = e ? g.concat(e) : g;
|
|
655
|
+
}, !0),
|
|
656
|
+
w = y.map = {},
|
|
657
|
+
P = y.register = function (t, e, i, s) {
|
|
658
|
+
for (var n, r, a, o, l = e.split(","), _ = l.length, u = (i || "easeIn,easeOut,easeInOut").split(","); --_ > -1;) {
|
|
659
|
+
for (r = l[_], n = s ? v("easing." + r, null, !0) : h.easing[r] || {}, a = u.length; --a > -1;) {
|
|
660
|
+
o = u[a], w[r + "." + o] = w[o + r] = n[o] = t.getRatio ? t : t[o] || new t();
|
|
661
|
+
}
|
|
662
|
+
}
|
|
663
|
+
};
|
|
664
|
+
|
|
665
|
+
for (r = y.prototype, r._calcEnd = !1, r.getRatio = function (t) {
|
|
666
|
+
if (this._func) return this._params[0] = t, this._func.apply(null, this._params);
|
|
667
|
+
var e = this._type,
|
|
668
|
+
i = this._power,
|
|
669
|
+
s = 1 === e ? 1 - t : 2 === e ? t : .5 > t ? 2 * t : 2 * (1 - t);
|
|
670
|
+
return 1 === i ? s *= s : 2 === i ? s *= s * s : 3 === i ? s *= s * s * s : 4 === i && (s *= s * s * s * s), 1 === e ? 1 - s : 2 === e ? s : .5 > t ? s / 2 : 1 - s / 2;
|
|
671
|
+
}, s = ["Linear", "Quad", "Cubic", "Quart", "Quint,Strong"], n = s.length; --n > -1;) {
|
|
672
|
+
r = s[n] + ",Power" + n, P(new y(null, null, 1, n), r, "easeOut", !0), P(new y(null, null, 2, n), r, "easeIn" + (0 === n ? ",easeNone" : "")), P(new y(null, null, 3, n), r, "easeInOut");
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
w.linear = h.easing.Linear.easeIn, w.swing = h.easing.Quad.easeInOut;
|
|
676
|
+
var b = v("events.EventDispatcher", function (t) {
|
|
677
|
+
this._listeners = {}, this._eventTarget = t || this;
|
|
678
|
+
});
|
|
679
|
+
r = b.prototype, r.addEventListener = function (t, e, i, s, n) {
|
|
680
|
+
n = n || 0;
|
|
681
|
+
var r,
|
|
682
|
+
l,
|
|
683
|
+
h = this._listeners[t],
|
|
684
|
+
_ = 0;
|
|
685
|
+
|
|
686
|
+
for (null == h && (this._listeners[t] = h = []), l = h.length; --l > -1;) {
|
|
687
|
+
r = h[l], r.c === e && r.s === i ? h.splice(l, 1) : 0 === _ && n > r.pr && (_ = l + 1);
|
|
688
|
+
}
|
|
689
|
+
|
|
690
|
+
h.splice(_, 0, {
|
|
691
|
+
c: e,
|
|
692
|
+
s: i,
|
|
693
|
+
up: s,
|
|
694
|
+
pr: n
|
|
695
|
+
}), this !== a || o || a.wake();
|
|
696
|
+
}, r.removeEventListener = function (t, e) {
|
|
697
|
+
var i,
|
|
698
|
+
s = this._listeners[t];
|
|
699
|
+
if (s) for (i = s.length; --i > -1;) {
|
|
700
|
+
if (s[i].c === e) return s.splice(i, 1), void 0;
|
|
701
|
+
}
|
|
702
|
+
}, r.dispatchEvent = function (t) {
|
|
703
|
+
var e,
|
|
704
|
+
i,
|
|
705
|
+
s,
|
|
706
|
+
n = this._listeners[t];
|
|
707
|
+
if (n) for (e = n.length, i = this._eventTarget; --e > -1;) {
|
|
708
|
+
s = n[e], s.up ? s.c.call(s.s || i, {
|
|
709
|
+
type: t,
|
|
710
|
+
target: i
|
|
711
|
+
}) : s.c.call(s.s || i);
|
|
712
|
+
}
|
|
713
|
+
};
|
|
714
|
+
|
|
715
|
+
var k = t.requestAnimationFrame,
|
|
716
|
+
A = t.cancelAnimationFrame,
|
|
717
|
+
S = Date.now || function () {
|
|
718
|
+
return new Date().getTime();
|
|
719
|
+
},
|
|
720
|
+
x = S();
|
|
721
|
+
|
|
722
|
+
for (s = ["ms", "moz", "webkit", "o"], n = s.length; --n > -1 && !k;) {
|
|
723
|
+
k = t[s[n] + "RequestAnimationFrame"], A = t[s[n] + "CancelAnimationFrame"] || t[s[n] + "CancelRequestAnimationFrame"];
|
|
724
|
+
}
|
|
725
|
+
|
|
726
|
+
v("Ticker", function (t, e) {
|
|
727
|
+
var i,
|
|
728
|
+
s,
|
|
729
|
+
n,
|
|
730
|
+
r,
|
|
731
|
+
l,
|
|
732
|
+
h = this,
|
|
733
|
+
u = S(),
|
|
734
|
+
m = e !== !1 && k,
|
|
735
|
+
p = 500,
|
|
736
|
+
c = 33,
|
|
737
|
+
d = function d(t) {
|
|
738
|
+
var e,
|
|
739
|
+
a,
|
|
740
|
+
o = S() - x;
|
|
741
|
+
o > p && (u += o - c), x += o, h.time = (x - u) / 1e3, e = h.time - l, (!i || e > 0 || t === !0) && (h.frame++, l += e + (e >= r ? .004 : r - e), a = !0), t !== !0 && (n = s(d)), a && h.dispatchEvent("tick");
|
|
742
|
+
};
|
|
743
|
+
|
|
744
|
+
b.call(h), h.time = h.frame = 0, h.tick = function () {
|
|
745
|
+
d(!0);
|
|
746
|
+
}, h.lagSmoothing = function (t, e) {
|
|
747
|
+
p = t || 1 / _, c = Math.min(e, p, 0);
|
|
748
|
+
}, h.sleep = function () {
|
|
749
|
+
null != n && (m && A ? A(n) : clearTimeout(n), s = f, n = null, h === a && (o = !1));
|
|
750
|
+
}, h.wake = function () {
|
|
751
|
+
null !== n ? h.sleep() : h.frame > 10 && (x = S() - p + 5), s = 0 === i ? f : m && k ? k : function (t) {
|
|
752
|
+
return setTimeout(t, 0 | 1e3 * (l - h.time) + 1);
|
|
753
|
+
}, h === a && (o = !0), d(2);
|
|
754
|
+
}, h.fps = function (t) {
|
|
755
|
+
return arguments.length ? (i = t, r = 1 / (i || 60), l = this.time + r, h.wake(), void 0) : i;
|
|
756
|
+
}, h.useRAF = function (t) {
|
|
757
|
+
return arguments.length ? (h.sleep(), m = t, h.fps(i), void 0) : m;
|
|
758
|
+
}, h.fps(t), setTimeout(function () {
|
|
759
|
+
m && (!n || 5 > h.frame) && h.useRAF(!1);
|
|
760
|
+
}, 1500);
|
|
761
|
+
}), r = h.Ticker.prototype = new h.events.EventDispatcher(), r.constructor = h.Ticker;
|
|
762
|
+
var C = v("core.Animation", function (t, e) {
|
|
763
|
+
if (this.vars = e = e || {}, this._duration = this._totalDuration = t || 0, this._delay = Number(e.delay) || 0, this._timeScale = 1, this._active = e.immediateRender === !0, this.data = e.data, this._reversed = e.reversed === !0, B) {
|
|
764
|
+
o || a.wake();
|
|
765
|
+
var i = this.vars.useFrames ? q : B;
|
|
766
|
+
i.add(this, i._time), this.vars.paused && this.paused(!0);
|
|
767
|
+
}
|
|
768
|
+
});
|
|
769
|
+
a = C.ticker = new h.Ticker(), r = C.prototype, r._dirty = r._gc = r._initted = r._paused = !1, r._totalTime = r._time = 0, r._rawPrevTime = -1, r._next = r._last = r._onUpdate = r._timeline = r.timeline = null, r._paused = !1;
|
|
770
|
+
|
|
771
|
+
var R = function R() {
|
|
772
|
+
o && S() - x > 2e3 && a.wake(), setTimeout(R, 2e3);
|
|
773
|
+
};
|
|
774
|
+
|
|
775
|
+
R(), r.play = function (t, e) {
|
|
776
|
+
return null != t && this.seek(t, e), this.reversed(!1).paused(!1);
|
|
777
|
+
}, r.pause = function (t, e) {
|
|
778
|
+
return null != t && this.seek(t, e), this.paused(!0);
|
|
779
|
+
}, r.resume = function (t, e) {
|
|
780
|
+
return null != t && this.seek(t, e), this.paused(!1);
|
|
781
|
+
}, r.seek = function (t, e) {
|
|
782
|
+
return this.totalTime(Number(t), e !== !1);
|
|
783
|
+
}, r.restart = function (t, e) {
|
|
784
|
+
return this.reversed(!1).paused(!1).totalTime(t ? -this._delay : 0, e !== !1, !0);
|
|
785
|
+
}, r.reverse = function (t, e) {
|
|
786
|
+
return null != t && this.seek(t || this.totalDuration(), e), this.reversed(!0).paused(!1);
|
|
787
|
+
}, r.render = function () {}, r.invalidate = function () {
|
|
788
|
+
return this;
|
|
789
|
+
}, r.isActive = function () {
|
|
790
|
+
var t,
|
|
791
|
+
e = this._timeline,
|
|
792
|
+
i = this._startTime;
|
|
793
|
+
return !e || !this._gc && !this._paused && e.isActive() && (t = e.rawTime()) >= i && i + this.totalDuration() / this._timeScale > t;
|
|
794
|
+
}, r._enabled = function (t, e) {
|
|
795
|
+
return o || a.wake(), this._gc = !t, this._active = this.isActive(), e !== !0 && (t && !this.timeline ? this._timeline.add(this, this._startTime - this._delay) : !t && this.timeline && this._timeline._remove(this, !0)), !1;
|
|
796
|
+
}, r._kill = function () {
|
|
797
|
+
return this._enabled(!1, !1);
|
|
798
|
+
}, r.kill = function (t, e) {
|
|
799
|
+
return this._kill(t, e), this;
|
|
800
|
+
}, r._uncache = function (t) {
|
|
801
|
+
for (var e = t ? this : this.timeline; e;) {
|
|
802
|
+
e._dirty = !0, e = e.timeline;
|
|
803
|
+
}
|
|
804
|
+
|
|
805
|
+
return this;
|
|
806
|
+
}, r._swapSelfInParams = function (t) {
|
|
807
|
+
for (var e = t.length, i = t.concat(); --e > -1;) {
|
|
808
|
+
"{self}" === t[e] && (i[e] = this);
|
|
809
|
+
}
|
|
810
|
+
|
|
811
|
+
return i;
|
|
812
|
+
}, r.eventCallback = function (t, e, i, s) {
|
|
813
|
+
if ("on" === (t || "").substr(0, 2)) {
|
|
814
|
+
var n = this.vars;
|
|
815
|
+
if (1 === arguments.length) return n[t];
|
|
816
|
+
null == e ? delete n[t] : (n[t] = e, n[t + "Params"] = m(i) && -1 !== i.join("").indexOf("{self}") ? this._swapSelfInParams(i) : i, n[t + "Scope"] = s), "onUpdate" === t && (this._onUpdate = e);
|
|
817
|
+
}
|
|
818
|
+
|
|
819
|
+
return this;
|
|
820
|
+
}, r.delay = function (t) {
|
|
821
|
+
return arguments.length ? (this._timeline.smoothChildTiming && this.startTime(this._startTime + t - this._delay), this._delay = t, this) : this._delay;
|
|
822
|
+
}, r.duration = function (t) {
|
|
823
|
+
return arguments.length ? (this._duration = this._totalDuration = t, this._uncache(!0), this._timeline.smoothChildTiming && this._time > 0 && this._time < this._duration && 0 !== t && this.totalTime(this._totalTime * (t / this._duration), !0), this) : (this._dirty = !1, this._duration);
|
|
824
|
+
}, r.totalDuration = function (t) {
|
|
825
|
+
return this._dirty = !1, arguments.length ? this.duration(t) : this._totalDuration;
|
|
826
|
+
}, r.time = function (t, e) {
|
|
827
|
+
return arguments.length ? (this._dirty && this.totalDuration(), this.totalTime(t > this._duration ? this._duration : t, e)) : this._time;
|
|
828
|
+
}, r.totalTime = function (t, e, i) {
|
|
829
|
+
if (o || a.wake(), !arguments.length) return this._totalTime;
|
|
830
|
+
|
|
831
|
+
if (this._timeline) {
|
|
832
|
+
if (0 > t && !i && (t += this.totalDuration()), this._timeline.smoothChildTiming) {
|
|
833
|
+
this._dirty && this.totalDuration();
|
|
834
|
+
var s = this._totalDuration,
|
|
835
|
+
n = this._timeline;
|
|
836
|
+
if (t > s && !i && (t = s), this._startTime = (this._paused ? this._pauseTime : n._time) - (this._reversed ? s - t : t) / this._timeScale, n._dirty || this._uncache(!1), n._timeline) for (; n._timeline;) {
|
|
837
|
+
n._timeline._time !== (n._startTime + n._totalTime) / n._timeScale && n.totalTime(n._totalTime, !0), n = n._timeline;
|
|
838
|
+
}
|
|
839
|
+
}
|
|
840
|
+
|
|
841
|
+
this._gc && this._enabled(!0, !1), (this._totalTime !== t || 0 === this._duration) && (this.render(t, e, !1), O.length && M());
|
|
842
|
+
}
|
|
843
|
+
|
|
844
|
+
return this;
|
|
845
|
+
}, r.progress = r.totalProgress = function (t, e) {
|
|
846
|
+
return arguments.length ? this.totalTime(this.duration() * t, e) : this._time / this.duration();
|
|
847
|
+
}, r.startTime = function (t) {
|
|
848
|
+
return arguments.length ? (t !== this._startTime && (this._startTime = t, this.timeline && this.timeline._sortChildren && this.timeline.add(this, t - this._delay)), this) : this._startTime;
|
|
849
|
+
}, r.timeScale = function (t) {
|
|
850
|
+
if (!arguments.length) return this._timeScale;
|
|
851
|
+
|
|
852
|
+
if (t = t || _, this._timeline && this._timeline.smoothChildTiming) {
|
|
853
|
+
var e = this._pauseTime,
|
|
854
|
+
i = e || 0 === e ? e : this._timeline.totalTime();
|
|
855
|
+
this._startTime = i - (i - this._startTime) * this._timeScale / t;
|
|
856
|
+
}
|
|
857
|
+
|
|
858
|
+
return this._timeScale = t, this._uncache(!1);
|
|
859
|
+
}, r.reversed = function (t) {
|
|
860
|
+
return arguments.length ? (t != this._reversed && (this._reversed = t, this.totalTime(this._timeline && !this._timeline.smoothChildTiming ? this.totalDuration() - this._totalTime : this._totalTime, !0)), this) : this._reversed;
|
|
861
|
+
}, r.paused = function (t) {
|
|
862
|
+
if (!arguments.length) return this._paused;
|
|
863
|
+
|
|
864
|
+
if (t != this._paused && this._timeline) {
|
|
865
|
+
o || t || a.wake();
|
|
866
|
+
var e = this._timeline,
|
|
867
|
+
i = e.rawTime(),
|
|
868
|
+
s = i - this._pauseTime;
|
|
869
|
+
!t && e.smoothChildTiming && (this._startTime += s, this._uncache(!1)), this._pauseTime = t ? i : null, this._paused = t, this._active = this.isActive(), !t && 0 !== s && this._initted && this.duration() && this.render(e.smoothChildTiming ? this._totalTime : (i - this._startTime) / this._timeScale, !0, !0);
|
|
870
|
+
}
|
|
871
|
+
|
|
872
|
+
return this._gc && !t && this._enabled(!0, !1), this;
|
|
873
|
+
};
|
|
874
|
+
var D = v("core.SimpleTimeline", function (t) {
|
|
875
|
+
C.call(this, 0, t), this.autoRemoveChildren = this.smoothChildTiming = !0;
|
|
876
|
+
});
|
|
877
|
+
r = D.prototype = new C(), r.constructor = D, r.kill()._gc = !1, r._first = r._last = null, r._sortChildren = !1, r.add = r.insert = function (t, e) {
|
|
878
|
+
var i, s;
|
|
879
|
+
if (t._startTime = Number(e || 0) + t._delay, t._paused && this !== t._timeline && (t._pauseTime = t._startTime + (this.rawTime() - t._startTime) / t._timeScale), t.timeline && t.timeline._remove(t, !0), t.timeline = t._timeline = this, t._gc && t._enabled(!0, !0), i = this._last, this._sortChildren) for (s = t._startTime; i && i._startTime > s;) {
|
|
880
|
+
i = i._prev;
|
|
881
|
+
}
|
|
882
|
+
return i ? (t._next = i._next, i._next = t) : (t._next = this._first, this._first = t), t._next ? t._next._prev = t : this._last = t, t._prev = i, this._timeline && this._uncache(!0), this;
|
|
883
|
+
}, r._remove = function (t, e) {
|
|
884
|
+
return t.timeline === this && (e || t._enabled(!1, !0), t._prev ? t._prev._next = t._next : this._first === t && (this._first = t._next), t._next ? t._next._prev = t._prev : this._last === t && (this._last = t._prev), t._next = t._prev = t.timeline = null, this._timeline && this._uncache(!0)), this;
|
|
885
|
+
}, r.render = function (t, e, i) {
|
|
886
|
+
var s,
|
|
887
|
+
n = this._first;
|
|
888
|
+
|
|
889
|
+
for (this._totalTime = this._time = this._rawPrevTime = t; n;) {
|
|
890
|
+
s = n._next, (n._active || t >= n._startTime && !n._paused) && (n._reversed ? n.render((n._dirty ? n.totalDuration() : n._totalDuration) - (t - n._startTime) * n._timeScale, e, i) : n.render((t - n._startTime) * n._timeScale, e, i)), n = s;
|
|
891
|
+
}
|
|
892
|
+
}, r.rawTime = function () {
|
|
893
|
+
return o || a.wake(), this._totalTime;
|
|
894
|
+
};
|
|
895
|
+
|
|
896
|
+
var I = v("TweenLite", function (e, i, s) {
|
|
897
|
+
if (C.call(this, i, s), this.render = I.prototype.render, null == e) throw "Cannot tween a null target.";
|
|
898
|
+
this.target = e = "string" != typeof e ? e : I.selector(e) || e;
|
|
899
|
+
var n,
|
|
900
|
+
r,
|
|
901
|
+
a,
|
|
902
|
+
o = e.jquery || e.length && e !== t && e[0] && (e[0] === t || e[0].nodeType && e[0].style && !e.nodeType),
|
|
903
|
+
l = this.vars.overwrite;
|
|
904
|
+
if (this._overwrite = l = null == l ? Q[I.defaultOverwrite] : "number" == typeof l ? l >> 0 : Q[l], (o || e instanceof Array || e.push && m(e)) && "number" != typeof e[0]) for (this._targets = a = u(e), this._propLookup = [], this._siblings = [], n = 0; a.length > n; n++) {
|
|
905
|
+
r = a[n], r ? "string" != typeof r ? r.length && r !== t && r[0] && (r[0] === t || r[0].nodeType && r[0].style && !r.nodeType) ? (a.splice(n--, 1), this._targets = a = a.concat(u(r))) : (this._siblings[n] = $(r, this, !1), 1 === l && this._siblings[n].length > 1 && K(r, this, null, 1, this._siblings[n])) : (r = a[n--] = I.selector(r), "string" == typeof r && a.splice(n + 1, 1)) : a.splice(n--, 1);
|
|
906
|
+
} else this._propLookup = {}, this._siblings = $(e, this, !1), 1 === l && this._siblings.length > 1 && K(e, this, null, 1, this._siblings);
|
|
907
|
+
(this.vars.immediateRender || 0 === i && 0 === this._delay && this.vars.immediateRender !== !1) && (this._time = -_, this.render(-this._delay));
|
|
908
|
+
}, !0),
|
|
909
|
+
E = function E(e) {
|
|
910
|
+
return e.length && e !== t && e[0] && (e[0] === t || e[0].nodeType && e[0].style && !e.nodeType);
|
|
911
|
+
},
|
|
912
|
+
z = function z(t, e) {
|
|
913
|
+
var i,
|
|
914
|
+
s = {};
|
|
915
|
+
|
|
916
|
+
for (i in t) {
|
|
917
|
+
G[i] || i in e && "transform" !== i && "x" !== i && "y" !== i && "width" !== i && "height" !== i && "className" !== i && "border" !== i || !(!U[i] || U[i] && U[i]._autoCSS) || (s[i] = t[i], delete t[i]);
|
|
918
|
+
}
|
|
919
|
+
|
|
920
|
+
t.css = s;
|
|
921
|
+
};
|
|
922
|
+
|
|
923
|
+
r = I.prototype = new C(), r.constructor = I, r.kill()._gc = !1, r.ratio = 0, r._firstPT = r._targets = r._overwrittenProps = r._startAt = null, r._notifyPluginsOfEnabled = r._lazy = !1, I.version = "1.13.1", I.defaultEase = r._ease = new y(null, null, 1, 1), I.defaultOverwrite = "auto", I.ticker = a, I.autoSleep = !0, I.lagSmoothing = function (t, e) {
|
|
924
|
+
a.lagSmoothing(t, e);
|
|
925
|
+
}, I.selector = t.$ || t.jQuery || function (e) {
|
|
926
|
+
var i = t.$ || t.jQuery;
|
|
927
|
+
return i ? (I.selector = i, i(e)) : "undefined" == typeof document ? e : document.querySelectorAll ? document.querySelectorAll(e) : document.getElementById("#" === e.charAt(0) ? e.substr(1) : e);
|
|
928
|
+
};
|
|
929
|
+
|
|
930
|
+
var O = [],
|
|
931
|
+
L = {},
|
|
932
|
+
N = I._internals = {
|
|
933
|
+
isArray: m,
|
|
934
|
+
isSelector: E,
|
|
935
|
+
lazyTweens: O
|
|
936
|
+
},
|
|
937
|
+
U = I._plugins = {},
|
|
938
|
+
F = N.tweenLookup = {},
|
|
939
|
+
j = 0,
|
|
940
|
+
G = N.reservedProps = {
|
|
941
|
+
ease: 1,
|
|
942
|
+
delay: 1,
|
|
943
|
+
overwrite: 1,
|
|
944
|
+
onComplete: 1,
|
|
945
|
+
onCompleteParams: 1,
|
|
946
|
+
onCompleteScope: 1,
|
|
947
|
+
useFrames: 1,
|
|
948
|
+
runBackwards: 1,
|
|
949
|
+
startAt: 1,
|
|
950
|
+
onUpdate: 1,
|
|
951
|
+
onUpdateParams: 1,
|
|
952
|
+
onUpdateScope: 1,
|
|
953
|
+
onStart: 1,
|
|
954
|
+
onStartParams: 1,
|
|
955
|
+
onStartScope: 1,
|
|
956
|
+
onReverseComplete: 1,
|
|
957
|
+
onReverseCompleteParams: 1,
|
|
958
|
+
onReverseCompleteScope: 1,
|
|
959
|
+
onRepeat: 1,
|
|
960
|
+
onRepeatParams: 1,
|
|
961
|
+
onRepeatScope: 1,
|
|
962
|
+
easeParams: 1,
|
|
963
|
+
yoyo: 1,
|
|
964
|
+
immediateRender: 1,
|
|
965
|
+
repeat: 1,
|
|
966
|
+
repeatDelay: 1,
|
|
967
|
+
data: 1,
|
|
968
|
+
paused: 1,
|
|
969
|
+
reversed: 1,
|
|
970
|
+
autoCSS: 1,
|
|
971
|
+
lazy: 1
|
|
972
|
+
},
|
|
973
|
+
Q = {
|
|
974
|
+
none: 0,
|
|
975
|
+
all: 1,
|
|
976
|
+
auto: 2,
|
|
977
|
+
concurrent: 3,
|
|
978
|
+
allOnStart: 4,
|
|
979
|
+
preexisting: 5,
|
|
980
|
+
"true": 1,
|
|
981
|
+
"false": 0
|
|
982
|
+
},
|
|
983
|
+
q = C._rootFramesTimeline = new D(),
|
|
984
|
+
B = C._rootTimeline = new D(),
|
|
985
|
+
M = N.lazyRender = function () {
|
|
986
|
+
var t = O.length;
|
|
987
|
+
|
|
988
|
+
for (L = {}; --t > -1;) {
|
|
989
|
+
s = O[t], s && s._lazy !== !1 && (s.render(s._lazy, !1, !0), s._lazy = !1);
|
|
990
|
+
}
|
|
991
|
+
|
|
992
|
+
O.length = 0;
|
|
993
|
+
};
|
|
994
|
+
|
|
995
|
+
B._startTime = a.time, q._startTime = a.frame, B._active = q._active = !0, setTimeout(M, 1), C._updateRoot = I.render = function () {
|
|
996
|
+
var t, e, i;
|
|
997
|
+
|
|
998
|
+
if (O.length && M(), B.render((a.time - B._startTime) * B._timeScale, !1, !1), q.render((a.frame - q._startTime) * q._timeScale, !1, !1), O.length && M(), !(a.frame % 120)) {
|
|
999
|
+
for (i in F) {
|
|
1000
|
+
for (e = F[i].tweens, t = e.length; --t > -1;) {
|
|
1001
|
+
e[t]._gc && e.splice(t, 1);
|
|
1002
|
+
}
|
|
1003
|
+
|
|
1004
|
+
0 === e.length && delete F[i];
|
|
1005
|
+
}
|
|
1006
|
+
|
|
1007
|
+
if (i = B._first, (!i || i._paused) && I.autoSleep && !q._first && 1 === a._listeners.tick.length) {
|
|
1008
|
+
for (; i && i._paused;) {
|
|
1009
|
+
i = i._next;
|
|
1010
|
+
}
|
|
1011
|
+
|
|
1012
|
+
i || a.sleep();
|
|
1013
|
+
}
|
|
1014
|
+
}
|
|
1015
|
+
}, a.addEventListener("tick", C._updateRoot);
|
|
1016
|
+
|
|
1017
|
+
var $ = function $(t, e, i) {
|
|
1018
|
+
var s,
|
|
1019
|
+
n,
|
|
1020
|
+
r = t._gsTweenID;
|
|
1021
|
+
if (F[r || (t._gsTweenID = r = "t" + j++)] || (F[r] = {
|
|
1022
|
+
target: t,
|
|
1023
|
+
tweens: []
|
|
1024
|
+
}), e && (s = F[r].tweens, s[n = s.length] = e, i)) for (; --n > -1;) {
|
|
1025
|
+
s[n] === e && s.splice(n, 1);
|
|
1026
|
+
}
|
|
1027
|
+
return F[r].tweens;
|
|
1028
|
+
},
|
|
1029
|
+
K = function K(t, e, i, s, n) {
|
|
1030
|
+
var r, a, o, l;
|
|
1031
|
+
|
|
1032
|
+
if (1 === s || s >= 4) {
|
|
1033
|
+
for (l = n.length, r = 0; l > r; r++) {
|
|
1034
|
+
if ((o = n[r]) !== e) o._gc || o._enabled(!1, !1) && (a = !0);else if (5 === s) break;
|
|
1035
|
+
}
|
|
1036
|
+
|
|
1037
|
+
return a;
|
|
1038
|
+
}
|
|
1039
|
+
|
|
1040
|
+
var h,
|
|
1041
|
+
u = e._startTime + _,
|
|
1042
|
+
f = [],
|
|
1043
|
+
m = 0,
|
|
1044
|
+
p = 0 === e._duration;
|
|
1045
|
+
|
|
1046
|
+
for (r = n.length; --r > -1;) {
|
|
1047
|
+
(o = n[r]) === e || o._gc || o._paused || (o._timeline !== e._timeline ? (h = h || H(e, 0, p), 0 === H(o, h, p) && (f[m++] = o)) : u >= o._startTime && o._startTime + o.totalDuration() / o._timeScale > u && ((p || !o._initted) && 2e-10 >= u - o._startTime || (f[m++] = o)));
|
|
1048
|
+
}
|
|
1049
|
+
|
|
1050
|
+
for (r = m; --r > -1;) {
|
|
1051
|
+
o = f[r], 2 === s && o._kill(i, t) && (a = !0), (2 !== s || !o._firstPT && o._initted) && o._enabled(!1, !1) && (a = !0);
|
|
1052
|
+
}
|
|
1053
|
+
|
|
1054
|
+
return a;
|
|
1055
|
+
},
|
|
1056
|
+
H = function H(t, e, i) {
|
|
1057
|
+
for (var s = t._timeline, n = s._timeScale, r = t._startTime; s._timeline;) {
|
|
1058
|
+
if (r += s._startTime, n *= s._timeScale, s._paused) return -100;
|
|
1059
|
+
s = s._timeline;
|
|
1060
|
+
}
|
|
1061
|
+
|
|
1062
|
+
return r /= n, r > e ? r - e : i && r === e || !t._initted && 2 * _ > r - e ? _ : (r += t.totalDuration() / t._timeScale / n) > e + _ ? 0 : r - e - _;
|
|
1063
|
+
};
|
|
1064
|
+
|
|
1065
|
+
r._init = function () {
|
|
1066
|
+
var t,
|
|
1067
|
+
e,
|
|
1068
|
+
i,
|
|
1069
|
+
s,
|
|
1070
|
+
n,
|
|
1071
|
+
r = this.vars,
|
|
1072
|
+
a = this._overwrittenProps,
|
|
1073
|
+
o = this._duration,
|
|
1074
|
+
l = !!r.immediateRender,
|
|
1075
|
+
h = r.ease;
|
|
1076
|
+
|
|
1077
|
+
if (r.startAt) {
|
|
1078
|
+
this._startAt && (this._startAt.render(-1, !0), this._startAt.kill()), n = {};
|
|
1079
|
+
|
|
1080
|
+
for (s in r.startAt) {
|
|
1081
|
+
n[s] = r.startAt[s];
|
|
1082
|
+
}
|
|
1083
|
+
|
|
1084
|
+
if (n.overwrite = !1, n.immediateRender = !0, n.lazy = l && r.lazy !== !1, n.startAt = n.delay = null, this._startAt = I.to(this.target, 0, n), l) if (this._time > 0) this._startAt = null;else if (0 !== o) return;
|
|
1085
|
+
} else if (r.runBackwards && 0 !== o) if (this._startAt) this._startAt.render(-1, !0), this._startAt.kill(), this._startAt = null;else {
|
|
1086
|
+
i = {};
|
|
1087
|
+
|
|
1088
|
+
for (s in r) {
|
|
1089
|
+
G[s] && "autoCSS" !== s || (i[s] = r[s]);
|
|
1090
|
+
}
|
|
1091
|
+
|
|
1092
|
+
if (i.overwrite = 0, i.data = "isFromStart", i.lazy = l && r.lazy !== !1, i.immediateRender = l, this._startAt = I.to(this.target, 0, i), l) {
|
|
1093
|
+
if (0 === this._time) return;
|
|
1094
|
+
} else this._startAt._init(), this._startAt._enabled(!1);
|
|
1095
|
+
}
|
|
1096
|
+
|
|
1097
|
+
if (this._ease = h = h ? h instanceof y ? h : "function" == typeof h ? new y(h, r.easeParams) : w[h] || I.defaultEase : I.defaultEase, r.easeParams instanceof Array && h.config && (this._ease = h.config.apply(h, r.easeParams)), this._easeType = this._ease._type, this._easePower = this._ease._power, this._firstPT = null, this._targets) for (t = this._targets.length; --t > -1;) {
|
|
1098
|
+
this._initProps(this._targets[t], this._propLookup[t] = {}, this._siblings[t], a ? a[t] : null) && (e = !0);
|
|
1099
|
+
} else e = this._initProps(this.target, this._propLookup, this._siblings, a);
|
|
1100
|
+
if (e && I._onPluginEvent("_onInitAllProps", this), a && (this._firstPT || "function" != typeof this.target && this._enabled(!1, !1)), r.runBackwards) for (i = this._firstPT; i;) {
|
|
1101
|
+
i.s += i.c, i.c = -i.c, i = i._next;
|
|
1102
|
+
}
|
|
1103
|
+
this._onUpdate = r.onUpdate, this._initted = !0;
|
|
1104
|
+
}, r._initProps = function (e, i, s, n) {
|
|
1105
|
+
var r, a, o, l, h, _;
|
|
1106
|
+
|
|
1107
|
+
if (null == e) return !1;
|
|
1108
|
+
L[e._gsTweenID] && M(), this.vars.css || e.style && e !== t && e.nodeType && U.css && this.vars.autoCSS !== !1 && z(this.vars, e);
|
|
1109
|
+
|
|
1110
|
+
for (r in this.vars) {
|
|
1111
|
+
if (_ = this.vars[r], G[r]) _ && (_ instanceof Array || _.push && m(_)) && -1 !== _.join("").indexOf("{self}") && (this.vars[r] = _ = this._swapSelfInParams(_, this));else if (U[r] && (l = new U[r]())._onInitTween(e, this.vars[r], this)) {
|
|
1112
|
+
for (this._firstPT = h = {
|
|
1113
|
+
_next: this._firstPT,
|
|
1114
|
+
t: l,
|
|
1115
|
+
p: "setRatio",
|
|
1116
|
+
s: 0,
|
|
1117
|
+
c: 1,
|
|
1118
|
+
f: !0,
|
|
1119
|
+
n: r,
|
|
1120
|
+
pg: !0,
|
|
1121
|
+
pr: l._priority
|
|
1122
|
+
}, a = l._overwriteProps.length; --a > -1;) {
|
|
1123
|
+
i[l._overwriteProps[a]] = this._firstPT;
|
|
1124
|
+
}
|
|
1125
|
+
|
|
1126
|
+
(l._priority || l._onInitAllProps) && (o = !0), (l._onDisable || l._onEnable) && (this._notifyPluginsOfEnabled = !0);
|
|
1127
|
+
} else this._firstPT = i[r] = h = {
|
|
1128
|
+
_next: this._firstPT,
|
|
1129
|
+
t: e,
|
|
1130
|
+
p: r,
|
|
1131
|
+
f: "function" == typeof e[r],
|
|
1132
|
+
n: r,
|
|
1133
|
+
pg: !1,
|
|
1134
|
+
pr: 0
|
|
1135
|
+
}, h.s = h.f ? e[r.indexOf("set") || "function" != typeof e["get" + r.substr(3)] ? r : "get" + r.substr(3)]() : parseFloat(e[r]), h.c = "string" == typeof _ && "=" === _.charAt(1) ? parseInt(_.charAt(0) + "1", 10) * Number(_.substr(2)) : Number(_) - h.s || 0;
|
|
1136
|
+
h && h._next && (h._next._prev = h);
|
|
1137
|
+
}
|
|
1138
|
+
|
|
1139
|
+
return n && this._kill(n, e) ? this._initProps(e, i, s, n) : this._overwrite > 1 && this._firstPT && s.length > 1 && K(e, this, i, this._overwrite, s) ? (this._kill(i, e), this._initProps(e, i, s, n)) : (this._firstPT && (this.vars.lazy !== !1 && this._duration || this.vars.lazy && !this._duration) && (L[e._gsTweenID] = !0), o);
|
|
1140
|
+
}, r.render = function (t, e, i) {
|
|
1141
|
+
var s,
|
|
1142
|
+
n,
|
|
1143
|
+
r,
|
|
1144
|
+
a,
|
|
1145
|
+
o = this._time,
|
|
1146
|
+
l = this._duration,
|
|
1147
|
+
h = this._rawPrevTime;
|
|
1148
|
+
if (t >= l) this._totalTime = this._time = l, this.ratio = this._ease._calcEnd ? this._ease.getRatio(1) : 1, this._reversed || (s = !0, n = "onComplete"), 0 === l && (this._initted || !this.vars.lazy || i) && (this._startTime === this._timeline._duration && (t = 0), (0 === t || 0 > h || h === _) && h !== t && (i = !0, h > _ && (n = "onReverseComplete")), this._rawPrevTime = a = !e || t || h === t ? t : _);else if (1e-7 > t) this._totalTime = this._time = 0, this.ratio = this._ease._calcEnd ? this._ease.getRatio(0) : 0, (0 !== o || 0 === l && h > 0 && h !== _) && (n = "onReverseComplete", s = this._reversed), 0 > t ? (this._active = !1, 0 === l && (this._initted || !this.vars.lazy || i) && (h >= 0 && (i = !0), this._rawPrevTime = a = !e || t || h === t ? t : _)) : this._initted || (i = !0);else if (this._totalTime = this._time = t, this._easeType) {
|
|
1149
|
+
var u = t / l,
|
|
1150
|
+
f = this._easeType,
|
|
1151
|
+
m = this._easePower;
|
|
1152
|
+
(1 === f || 3 === f && u >= .5) && (u = 1 - u), 3 === f && (u *= 2), 1 === m ? u *= u : 2 === m ? u *= u * u : 3 === m ? u *= u * u * u : 4 === m && (u *= u * u * u * u), this.ratio = 1 === f ? 1 - u : 2 === f ? u : .5 > t / l ? u / 2 : 1 - u / 2;
|
|
1153
|
+
} else this.ratio = this._ease.getRatio(t / l);
|
|
1154
|
+
|
|
1155
|
+
if (this._time !== o || i) {
|
|
1156
|
+
if (!this._initted) {
|
|
1157
|
+
if (this._init(), !this._initted || this._gc) return;
|
|
1158
|
+
if (!i && this._firstPT && (this.vars.lazy !== !1 && this._duration || this.vars.lazy && !this._duration)) return this._time = this._totalTime = o, this._rawPrevTime = h, O.push(this), this._lazy = t, void 0;
|
|
1159
|
+
this._time && !s ? this.ratio = this._ease.getRatio(this._time / l) : s && this._ease._calcEnd && (this.ratio = this._ease.getRatio(0 === this._time ? 0 : 1));
|
|
1160
|
+
}
|
|
1161
|
+
|
|
1162
|
+
for (this._lazy !== !1 && (this._lazy = !1), this._active || !this._paused && this._time !== o && t >= 0 && (this._active = !0), 0 === o && (this._startAt && (t >= 0 ? this._startAt.render(t, e, i) : n || (n = "_dummyGS")), this.vars.onStart && (0 !== this._time || 0 === l) && (e || this.vars.onStart.apply(this.vars.onStartScope || this, this.vars.onStartParams || T))), r = this._firstPT; r;) {
|
|
1163
|
+
r.f ? r.t[r.p](r.c * this.ratio + r.s) : r.t[r.p] = r.c * this.ratio + r.s, r = r._next;
|
|
1164
|
+
}
|
|
1165
|
+
|
|
1166
|
+
this._onUpdate && (0 > t && this._startAt && this._startTime && this._startAt.render(t, e, i), e || (this._time !== o || s) && this._onUpdate.apply(this.vars.onUpdateScope || this, this.vars.onUpdateParams || T)), n && (!this._gc || i) && (0 > t && this._startAt && !this._onUpdate && this._startTime && this._startAt.render(t, e, i), s && (this._timeline.autoRemoveChildren && this._enabled(!1, !1), this._active = !1), !e && this.vars[n] && this.vars[n].apply(this.vars[n + "Scope"] || this, this.vars[n + "Params"] || T), 0 === l && this._rawPrevTime === _ && a !== _ && (this._rawPrevTime = 0));
|
|
1167
|
+
}
|
|
1168
|
+
}, r._kill = function (t, e) {
|
|
1169
|
+
if ("all" === t && (t = null), null == t && (null == e || e === this.target)) return this._lazy = !1, this._enabled(!1, !1);
|
|
1170
|
+
e = "string" != typeof e ? e || this._targets || this.target : I.selector(e) || e;
|
|
1171
|
+
var i, s, n, r, a, o, l, h;
|
|
1172
|
+
if ((m(e) || E(e)) && "number" != typeof e[0]) for (i = e.length; --i > -1;) {
|
|
1173
|
+
this._kill(t, e[i]) && (o = !0);
|
|
1174
|
+
} else {
|
|
1175
|
+
if (this._targets) {
|
|
1176
|
+
for (i = this._targets.length; --i > -1;) {
|
|
1177
|
+
if (e === this._targets[i]) {
|
|
1178
|
+
a = this._propLookup[i] || {}, this._overwrittenProps = this._overwrittenProps || [], s = this._overwrittenProps[i] = t ? this._overwrittenProps[i] || {} : "all";
|
|
1179
|
+
break;
|
|
1180
|
+
}
|
|
1181
|
+
}
|
|
1182
|
+
} else {
|
|
1183
|
+
if (e !== this.target) return !1;
|
|
1184
|
+
a = this._propLookup, s = this._overwrittenProps = t ? this._overwrittenProps || {} : "all";
|
|
1185
|
+
}
|
|
1186
|
+
|
|
1187
|
+
if (a) {
|
|
1188
|
+
l = t || a, h = t !== s && "all" !== s && t !== a && ("object" != _typeof(t) || !t._tempKill);
|
|
1189
|
+
|
|
1190
|
+
for (n in l) {
|
|
1191
|
+
(r = a[n]) && (r.pg && r.t._kill(l) && (o = !0), r.pg && 0 !== r.t._overwriteProps.length || (r._prev ? r._prev._next = r._next : r === this._firstPT && (this._firstPT = r._next), r._next && (r._next._prev = r._prev), r._next = r._prev = null), delete a[n]), h && (s[n] = 1);
|
|
1192
|
+
}
|
|
1193
|
+
|
|
1194
|
+
!this._firstPT && this._initted && this._enabled(!1, !1);
|
|
1195
|
+
}
|
|
1196
|
+
}
|
|
1197
|
+
return o;
|
|
1198
|
+
}, r.invalidate = function () {
|
|
1199
|
+
return this._notifyPluginsOfEnabled && I._onPluginEvent("_onDisable", this), this._firstPT = null, this._overwrittenProps = null, this._onUpdate = null, this._startAt = null, this._initted = this._active = this._notifyPluginsOfEnabled = this._lazy = !1, this._propLookup = this._targets ? {} : [], this;
|
|
1200
|
+
}, r._enabled = function (t, e) {
|
|
1201
|
+
if (o || a.wake(), t && this._gc) {
|
|
1202
|
+
var i,
|
|
1203
|
+
s = this._targets;
|
|
1204
|
+
if (s) for (i = s.length; --i > -1;) {
|
|
1205
|
+
this._siblings[i] = $(s[i], this, !0);
|
|
1206
|
+
} else this._siblings = $(this.target, this, !0);
|
|
1207
|
+
}
|
|
1208
|
+
|
|
1209
|
+
return C.prototype._enabled.call(this, t, e), this._notifyPluginsOfEnabled && this._firstPT ? I._onPluginEvent(t ? "_onEnable" : "_onDisable", this) : !1;
|
|
1210
|
+
}, I.to = function (t, e, i) {
|
|
1211
|
+
return new I(t, e, i);
|
|
1212
|
+
}, I.from = function (t, e, i) {
|
|
1213
|
+
return i.runBackwards = !0, i.immediateRender = 0 != i.immediateRender, new I(t, e, i);
|
|
1214
|
+
}, I.fromTo = function (t, e, i, s) {
|
|
1215
|
+
return s.startAt = i, s.immediateRender = 0 != s.immediateRender && 0 != i.immediateRender, new I(t, e, s);
|
|
1216
|
+
}, I.delayedCall = function (t, e, i, s, n) {
|
|
1217
|
+
return new I(e, 0, {
|
|
1218
|
+
delay: t,
|
|
1219
|
+
onComplete: e,
|
|
1220
|
+
onCompleteParams: i,
|
|
1221
|
+
onCompleteScope: s,
|
|
1222
|
+
onReverseComplete: e,
|
|
1223
|
+
onReverseCompleteParams: i,
|
|
1224
|
+
onReverseCompleteScope: s,
|
|
1225
|
+
immediateRender: !1,
|
|
1226
|
+
useFrames: n,
|
|
1227
|
+
overwrite: 0
|
|
1228
|
+
});
|
|
1229
|
+
}, I.set = function (t, e) {
|
|
1230
|
+
return new I(t, 0, e);
|
|
1231
|
+
}, I.getTweensOf = function (t, e) {
|
|
1232
|
+
if (null == t) return [];
|
|
1233
|
+
t = "string" != typeof t ? t : I.selector(t) || t;
|
|
1234
|
+
var i, s, n, r;
|
|
1235
|
+
|
|
1236
|
+
if ((m(t) || E(t)) && "number" != typeof t[0]) {
|
|
1237
|
+
for (i = t.length, s = []; --i > -1;) {
|
|
1238
|
+
s = s.concat(I.getTweensOf(t[i], e));
|
|
1239
|
+
}
|
|
1240
|
+
|
|
1241
|
+
for (i = s.length; --i > -1;) {
|
|
1242
|
+
for (r = s[i], n = i; --n > -1;) {
|
|
1243
|
+
r === s[n] && s.splice(i, 1);
|
|
1244
|
+
}
|
|
1245
|
+
}
|
|
1246
|
+
} else for (s = $(t).concat(), i = s.length; --i > -1;) {
|
|
1247
|
+
(s[i]._gc || e && !s[i].isActive()) && s.splice(i, 1);
|
|
1248
|
+
}
|
|
1249
|
+
|
|
1250
|
+
return s;
|
|
1251
|
+
}, I.killTweensOf = I.killDelayedCallsTo = function (t, e, i) {
|
|
1252
|
+
"object" == _typeof(e) && (i = e, e = !1);
|
|
1253
|
+
|
|
1254
|
+
for (var s = I.getTweensOf(t, e), n = s.length; --n > -1;) {
|
|
1255
|
+
s[n]._kill(i, t);
|
|
1256
|
+
}
|
|
1257
|
+
};
|
|
1258
|
+
var J = v("plugins.TweenPlugin", function (t, e) {
|
|
1259
|
+
this._overwriteProps = (t || "").split(","), this._propName = this._overwriteProps[0], this._priority = e || 0, this._super = J.prototype;
|
|
1260
|
+
}, !0);
|
|
1261
|
+
|
|
1262
|
+
if (r = J.prototype, J.version = "1.10.1", J.API = 2, r._firstPT = null, r._addTween = function (t, e, i, s, n, r) {
|
|
1263
|
+
var a, o;
|
|
1264
|
+
return null != s && (a = "number" == typeof s || "=" !== s.charAt(1) ? Number(s) - i : parseInt(s.charAt(0) + "1", 10) * Number(s.substr(2))) ? (this._firstPT = o = {
|
|
1265
|
+
_next: this._firstPT,
|
|
1266
|
+
t: t,
|
|
1267
|
+
p: e,
|
|
1268
|
+
s: i,
|
|
1269
|
+
c: a,
|
|
1270
|
+
f: "function" == typeof t[e],
|
|
1271
|
+
n: n || e,
|
|
1272
|
+
r: r
|
|
1273
|
+
}, o._next && (o._next._prev = o), o) : void 0;
|
|
1274
|
+
}, r.setRatio = function (t) {
|
|
1275
|
+
for (var e, i = this._firstPT, s = 1e-6; i;) {
|
|
1276
|
+
e = i.c * t + i.s, i.r ? e = Math.round(e) : s > e && e > -s && (e = 0), i.f ? i.t[i.p](e) : i.t[i.p] = e, i = i._next;
|
|
1277
|
+
}
|
|
1278
|
+
}, r._kill = function (t) {
|
|
1279
|
+
var e,
|
|
1280
|
+
i = this._overwriteProps,
|
|
1281
|
+
s = this._firstPT;
|
|
1282
|
+
if (null != t[this._propName]) this._overwriteProps = [];else for (e = i.length; --e > -1;) {
|
|
1283
|
+
null != t[i[e]] && i.splice(e, 1);
|
|
1284
|
+
}
|
|
1285
|
+
|
|
1286
|
+
for (; s;) {
|
|
1287
|
+
null != t[s.n] && (s._next && (s._next._prev = s._prev), s._prev ? (s._prev._next = s._next, s._prev = null) : this._firstPT === s && (this._firstPT = s._next)), s = s._next;
|
|
1288
|
+
}
|
|
1289
|
+
|
|
1290
|
+
return !1;
|
|
1291
|
+
}, r._roundProps = function (t, e) {
|
|
1292
|
+
for (var i = this._firstPT; i;) {
|
|
1293
|
+
(t[this._propName] || null != i.n && t[i.n.split(this._propName + "_").join("")]) && (i.r = e), i = i._next;
|
|
1294
|
+
}
|
|
1295
|
+
}, I._onPluginEvent = function (t, e) {
|
|
1296
|
+
var i,
|
|
1297
|
+
s,
|
|
1298
|
+
n,
|
|
1299
|
+
r,
|
|
1300
|
+
a,
|
|
1301
|
+
o = e._firstPT;
|
|
1302
|
+
|
|
1303
|
+
if ("_onInitAllProps" === t) {
|
|
1304
|
+
for (; o;) {
|
|
1305
|
+
for (a = o._next, s = n; s && s.pr > o.pr;) {
|
|
1306
|
+
s = s._next;
|
|
1307
|
+
}
|
|
1308
|
+
|
|
1309
|
+
(o._prev = s ? s._prev : r) ? o._prev._next = o : n = o, (o._next = s) ? s._prev = o : r = o, o = a;
|
|
1310
|
+
}
|
|
1311
|
+
|
|
1312
|
+
o = e._firstPT = n;
|
|
1313
|
+
}
|
|
1314
|
+
|
|
1315
|
+
for (; o;) {
|
|
1316
|
+
o.pg && "function" == typeof o.t[t] && o.t[t]() && (i = !0), o = o._next;
|
|
1317
|
+
}
|
|
1318
|
+
|
|
1319
|
+
return i;
|
|
1320
|
+
}, J.activate = function (t) {
|
|
1321
|
+
for (var e = t.length; --e > -1;) {
|
|
1322
|
+
t[e].API === J.API && (U[new t[e]()._propName] = t[e]);
|
|
1323
|
+
}
|
|
1324
|
+
|
|
1325
|
+
return !0;
|
|
1326
|
+
}, d.plugin = function (t) {
|
|
1327
|
+
if (!(t && t.propName && t.init && t.API)) throw "illegal plugin definition.";
|
|
1328
|
+
var e,
|
|
1329
|
+
i = t.propName,
|
|
1330
|
+
s = t.priority || 0,
|
|
1331
|
+
n = t.overwriteProps,
|
|
1332
|
+
r = {
|
|
1333
|
+
init: "_onInitTween",
|
|
1334
|
+
set: "setRatio",
|
|
1335
|
+
kill: "_kill",
|
|
1336
|
+
round: "_roundProps",
|
|
1337
|
+
initAll: "_onInitAllProps"
|
|
1338
|
+
},
|
|
1339
|
+
a = v("plugins." + i.charAt(0).toUpperCase() + i.substr(1) + "Plugin", function () {
|
|
1340
|
+
J.call(this, i, s), this._overwriteProps = n || [];
|
|
1341
|
+
}, t.global === !0),
|
|
1342
|
+
o = a.prototype = new J(i);
|
|
1343
|
+
o.constructor = a, a.API = t.API;
|
|
1344
|
+
|
|
1345
|
+
for (e in r) {
|
|
1346
|
+
"function" == typeof t[e] && (o[r[e]] = t[e]);
|
|
1347
|
+
}
|
|
1348
|
+
|
|
1349
|
+
return a.version = t.version, J.activate([a]), a;
|
|
1350
|
+
}, s = t._gsQueue) {
|
|
1351
|
+
for (n = 0; s.length > n; n++) {
|
|
1352
|
+
s[n]();
|
|
1353
|
+
}
|
|
1354
|
+
|
|
1355
|
+
for (r in p) {
|
|
1356
|
+
p[r].func || t.console.log("GSAP encountered missing dependency: com.greensock." + r);
|
|
1357
|
+
}
|
|
1358
|
+
}
|
|
1359
|
+
|
|
1360
|
+
o = !1;
|
|
1361
|
+
}
|
|
1362
|
+
})( true && module.exports && "undefined" != typeof global ? global : this || window, "TweenLite");
|
|
1363
|
+
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__("c8ba")))
|
|
1364
|
+
|
|
348
1365
|
/***/ }),
|
|
349
1366
|
|
|
350
1367
|
/***/ "0cfb":
|
|
@@ -4563,6 +5580,43 @@ var TEMPLATE = String(String).split('String');
|
|
|
4563
5580
|
});
|
|
4564
5581
|
|
|
4565
5582
|
|
|
5583
|
+
/***/ }),
|
|
5584
|
+
|
|
5585
|
+
/***/ "7037":
|
|
5586
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
5587
|
+
|
|
5588
|
+
__webpack_require__("a4d3");
|
|
5589
|
+
|
|
5590
|
+
__webpack_require__("e01a");
|
|
5591
|
+
|
|
5592
|
+
__webpack_require__("d28b");
|
|
5593
|
+
|
|
5594
|
+
__webpack_require__("e260");
|
|
5595
|
+
|
|
5596
|
+
__webpack_require__("d3b7");
|
|
5597
|
+
|
|
5598
|
+
__webpack_require__("3ca3");
|
|
5599
|
+
|
|
5600
|
+
__webpack_require__("ddb0");
|
|
5601
|
+
|
|
5602
|
+
function _typeof(obj) {
|
|
5603
|
+
"@babel/helpers - typeof";
|
|
5604
|
+
|
|
5605
|
+
if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") {
|
|
5606
|
+
module.exports = _typeof = function _typeof(obj) {
|
|
5607
|
+
return typeof obj;
|
|
5608
|
+
};
|
|
5609
|
+
} else {
|
|
5610
|
+
module.exports = _typeof = function _typeof(obj) {
|
|
5611
|
+
return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
|
|
5612
|
+
};
|
|
5613
|
+
}
|
|
5614
|
+
|
|
5615
|
+
return _typeof(obj);
|
|
5616
|
+
}
|
|
5617
|
+
|
|
5618
|
+
module.exports = _typeof;
|
|
5619
|
+
|
|
4566
5620
|
/***/ }),
|
|
4567
5621
|
|
|
4568
5622
|
/***/ "7156":
|
|
@@ -4974,6 +6028,31 @@ var WeakMap = global.WeakMap;
|
|
|
4974
6028
|
module.exports = typeof WeakMap === 'function' && /native code/.test(inspectSource(WeakMap));
|
|
4975
6029
|
|
|
4976
6030
|
|
|
6031
|
+
/***/ }),
|
|
6032
|
+
|
|
6033
|
+
/***/ "81d5":
|
|
6034
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
6035
|
+
|
|
6036
|
+
"use strict";
|
|
6037
|
+
|
|
6038
|
+
var toObject = __webpack_require__("7b0b");
|
|
6039
|
+
var toAbsoluteIndex = __webpack_require__("23cb");
|
|
6040
|
+
var toLength = __webpack_require__("50c4");
|
|
6041
|
+
|
|
6042
|
+
// `Array.prototype.fill` method implementation
|
|
6043
|
+
// https://tc39.github.io/ecma262/#sec-array.prototype.fill
|
|
6044
|
+
module.exports = function fill(value /* , start = 0, end = @length */) {
|
|
6045
|
+
var O = toObject(this);
|
|
6046
|
+
var length = toLength(O.length);
|
|
6047
|
+
var argumentsLength = arguments.length;
|
|
6048
|
+
var index = toAbsoluteIndex(argumentsLength > 1 ? arguments[1] : undefined, length);
|
|
6049
|
+
var end = argumentsLength > 2 ? arguments[2] : undefined;
|
|
6050
|
+
var endPos = end === undefined ? length : toAbsoluteIndex(end, length);
|
|
6051
|
+
while (endPos > index) O[index++] = value;
|
|
6052
|
+
return O;
|
|
6053
|
+
};
|
|
6054
|
+
|
|
6055
|
+
|
|
4977
6056
|
/***/ }),
|
|
4978
6057
|
|
|
4979
6058
|
/***/ "825a":
|
|
@@ -6684,6 +7763,32 @@ exports.BROKEN_CARET = fails(function () {
|
|
|
6684
7763
|
});
|
|
6685
7764
|
|
|
6686
7765
|
|
|
7766
|
+
/***/ }),
|
|
7767
|
+
|
|
7768
|
+
/***/ "a15b":
|
|
7769
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
7770
|
+
|
|
7771
|
+
"use strict";
|
|
7772
|
+
|
|
7773
|
+
var $ = __webpack_require__("23e7");
|
|
7774
|
+
var IndexedObject = __webpack_require__("44ad");
|
|
7775
|
+
var toIndexedObject = __webpack_require__("fc6a");
|
|
7776
|
+
var arrayMethodIsStrict = __webpack_require__("a640");
|
|
7777
|
+
|
|
7778
|
+
var nativeJoin = [].join;
|
|
7779
|
+
|
|
7780
|
+
var ES3_STRINGS = IndexedObject != Object;
|
|
7781
|
+
var STRICT_METHOD = arrayMethodIsStrict('join', ',');
|
|
7782
|
+
|
|
7783
|
+
// `Array.prototype.join` method
|
|
7784
|
+
// https://tc39.github.io/ecma262/#sec-array.prototype.join
|
|
7785
|
+
$({ target: 'Array', proto: true, forced: ES3_STRINGS || !STRICT_METHOD }, {
|
|
7786
|
+
join: function join(separator) {
|
|
7787
|
+
return nativeJoin.call(toIndexedObject(this), separator === undefined ? ',' : separator);
|
|
7788
|
+
}
|
|
7789
|
+
});
|
|
7790
|
+
|
|
7791
|
+
|
|
6687
7792
|
/***/ }),
|
|
6688
7793
|
|
|
6689
7794
|
/***/ "a434":
|
|
@@ -8902,6 +10007,25 @@ $({ target: 'Array', proto: true, forced: !USES_TO_LENGTH }, {
|
|
|
8902
10007
|
addToUnscopables('includes');
|
|
8903
10008
|
|
|
8904
10009
|
|
|
10010
|
+
/***/ }),
|
|
10011
|
+
|
|
10012
|
+
/***/ "cb29":
|
|
10013
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
10014
|
+
|
|
10015
|
+
var $ = __webpack_require__("23e7");
|
|
10016
|
+
var fill = __webpack_require__("81d5");
|
|
10017
|
+
var addToUnscopables = __webpack_require__("44d2");
|
|
10018
|
+
|
|
10019
|
+
// `Array.prototype.fill` method
|
|
10020
|
+
// https://tc39.github.io/ecma262/#sec-array.prototype.fill
|
|
10021
|
+
$({ target: 'Array', proto: true }, {
|
|
10022
|
+
fill: fill
|
|
10023
|
+
});
|
|
10024
|
+
|
|
10025
|
+
// https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables
|
|
10026
|
+
addToUnscopables('fill');
|
|
10027
|
+
|
|
10028
|
+
|
|
8905
10029
|
/***/ }),
|
|
8906
10030
|
|
|
8907
10031
|
/***/ "cb77":
|
|
@@ -17638,6 +18762,315 @@ packages_HtSelectUser.install = function (Vue) {
|
|
|
17638
18762
|
};
|
|
17639
18763
|
|
|
17640
18764
|
/* harmony default export */ var src_packages_HtSelectUser = (packages_HtSelectUser);
|
|
18765
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"48d53131-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/packages/HtTwee/index.vue?vue&type=template&id=3501e065&
|
|
18766
|
+
var HtTweevue_type_template_id_3501e065_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_vm._v(" 99999999999 "),_c('canvas',{ref:"ht-twee"})])}
|
|
18767
|
+
var HtTweevue_type_template_id_3501e065_staticRenderFns = []
|
|
18768
|
+
|
|
18769
|
+
|
|
18770
|
+
// CONCATENATED MODULE: ./src/packages/HtTwee/index.vue?vue&type=template&id=3501e065&
|
|
18771
|
+
|
|
18772
|
+
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.fill.js
|
|
18773
|
+
var es_array_fill = __webpack_require__("cb29");
|
|
18774
|
+
|
|
18775
|
+
// CONCATENATED MODULE: ./src/plugins/HtTwee.js
|
|
18776
|
+
|
|
18777
|
+
var width,
|
|
18778
|
+
height,
|
|
18779
|
+
largeHeader,
|
|
18780
|
+
canvas,
|
|
18781
|
+
ctx,
|
|
18782
|
+
points,
|
|
18783
|
+
HtTwee_target,
|
|
18784
|
+
animateHeader = true;
|
|
18785
|
+
|
|
18786
|
+
function getDistance(p1, p2) {
|
|
18787
|
+
return Math.pow(p1.x - p2.x, 2) + Math.pow(p1.y - p2.y, 2);
|
|
18788
|
+
}
|
|
18789
|
+
|
|
18790
|
+
function Circle(pos, rad, color) {
|
|
18791
|
+
// eslint-disable-next-line @typescript-eslint/no-this-alias
|
|
18792
|
+
var ttt = this; // constructor
|
|
18793
|
+
|
|
18794
|
+
(function () {
|
|
18795
|
+
ttt.pos = pos || null;
|
|
18796
|
+
ttt.radius = rad || null;
|
|
18797
|
+
ttt.color = color || null;
|
|
18798
|
+
})();
|
|
18799
|
+
|
|
18800
|
+
this.draw = function () {
|
|
18801
|
+
if (!ttt.active) return;
|
|
18802
|
+
ctx.beginPath();
|
|
18803
|
+
ctx.arc(ttt.pos.x, ttt.pos.y, ttt.radius, 0, 2 * Math.PI, false);
|
|
18804
|
+
ctx.fillStyle = 'rgba(156,217,249,' + ttt.active + ')';
|
|
18805
|
+
ctx.fill();
|
|
18806
|
+
};
|
|
18807
|
+
}
|
|
18808
|
+
|
|
18809
|
+
function scrollCheck() {
|
|
18810
|
+
if (document.body.scrollTop > height) animateHeader = false;else animateHeader = true;
|
|
18811
|
+
}
|
|
18812
|
+
|
|
18813
|
+
function shiftPoint(p) {
|
|
18814
|
+
TweenLite.to(p, 1 + 1 * Math.random(), {
|
|
18815
|
+
x: p.originX - 50 + Math.random() * 100,
|
|
18816
|
+
y: p.originY - 50 + Math.random() * 100,
|
|
18817
|
+
ease: Circ.easeInOut,
|
|
18818
|
+
onComplete: function onComplete() {
|
|
18819
|
+
shiftPoint(p);
|
|
18820
|
+
}
|
|
18821
|
+
});
|
|
18822
|
+
} // Canvas manipulation
|
|
18823
|
+
|
|
18824
|
+
|
|
18825
|
+
function drawLines(p) {
|
|
18826
|
+
if (!p.active) return;
|
|
18827
|
+
|
|
18828
|
+
for (var i in p.closest) {
|
|
18829
|
+
ctx.beginPath();
|
|
18830
|
+
ctx.moveTo(p.x, p.y);
|
|
18831
|
+
ctx.lineTo(p.closest[i].x, p.closest[i].y);
|
|
18832
|
+
ctx.strokeStyle = 'rgba(156,217,249,' + p.active + ')';
|
|
18833
|
+
ctx.stroke();
|
|
18834
|
+
}
|
|
18835
|
+
}
|
|
18836
|
+
|
|
18837
|
+
function resize() {
|
|
18838
|
+
width = window.innerWidth;
|
|
18839
|
+
height = window.innerHeight; // largeHeader.style.height = height+'px';
|
|
18840
|
+
|
|
18841
|
+
canvas.width = width;
|
|
18842
|
+
canvas.height = height;
|
|
18843
|
+
}
|
|
18844
|
+
|
|
18845
|
+
function mouseMove(e) {
|
|
18846
|
+
var posx = 0;
|
|
18847
|
+
var posy = 0;
|
|
18848
|
+
|
|
18849
|
+
if (e.pageX || e.pageY) {
|
|
18850
|
+
posx = e.pageX;
|
|
18851
|
+
posy = e.pageY;
|
|
18852
|
+
} else if (e.clientX || e.clientY) {
|
|
18853
|
+
posx = e.clientX + document.body.scrollLeft + document.documentElement.scrollLeft;
|
|
18854
|
+
posy = e.clientY + document.body.scrollTop + document.documentElement.scrollTop;
|
|
18855
|
+
}
|
|
18856
|
+
|
|
18857
|
+
HtTwee_target.x = posx;
|
|
18858
|
+
HtTwee_target.y = posy;
|
|
18859
|
+
}
|
|
18860
|
+
|
|
18861
|
+
function initHeader(ref) {
|
|
18862
|
+
width = window.innerWidth;
|
|
18863
|
+
height = window.innerHeight;
|
|
18864
|
+
HtTwee_target = {
|
|
18865
|
+
x: width / 2,
|
|
18866
|
+
y: height / 2
|
|
18867
|
+
}; // largeHeader = document.getElementById('large-header');
|
|
18868
|
+
// largeHeader.style.height = height+'px';
|
|
18869
|
+
|
|
18870
|
+
canvas = ref;
|
|
18871
|
+
canvas.width = width;
|
|
18872
|
+
canvas.height = height;
|
|
18873
|
+
ctx = canvas.getContext('2d'); // create points
|
|
18874
|
+
|
|
18875
|
+
points = [];
|
|
18876
|
+
|
|
18877
|
+
for (var x = 0; x < width; x = x + width / 20) {
|
|
18878
|
+
for (var y = 0; y < height; y = y + height / 20) {
|
|
18879
|
+
var px = x + Math.random() * width / 20;
|
|
18880
|
+
var py = y + Math.random() * height / 20;
|
|
18881
|
+
var p = {
|
|
18882
|
+
x: px,
|
|
18883
|
+
originX: px,
|
|
18884
|
+
y: py,
|
|
18885
|
+
originY: py
|
|
18886
|
+
};
|
|
18887
|
+
points.push(p);
|
|
18888
|
+
}
|
|
18889
|
+
} // for each point find the 5 closest points
|
|
18890
|
+
|
|
18891
|
+
|
|
18892
|
+
for (var i = 0; i < points.length; i++) {
|
|
18893
|
+
var closest = [];
|
|
18894
|
+
var p1 = points[i];
|
|
18895
|
+
|
|
18896
|
+
for (var j = 0; j < points.length; j++) {
|
|
18897
|
+
var p2 = points[j];
|
|
18898
|
+
|
|
18899
|
+
if (!(p1 == p2)) {
|
|
18900
|
+
var placed = false;
|
|
18901
|
+
|
|
18902
|
+
for (var k = 0; k < 5; k++) {
|
|
18903
|
+
if (!placed) {
|
|
18904
|
+
if (closest[k] == undefined) {
|
|
18905
|
+
closest[k] = p2;
|
|
18906
|
+
placed = true;
|
|
18907
|
+
}
|
|
18908
|
+
}
|
|
18909
|
+
}
|
|
18910
|
+
|
|
18911
|
+
for (var _k = 0; _k < 5; _k++) {
|
|
18912
|
+
if (!placed) {
|
|
18913
|
+
if (getDistance(p1, p2) < getDistance(p1, closest[_k])) {
|
|
18914
|
+
closest[_k] = p2;
|
|
18915
|
+
placed = true;
|
|
18916
|
+
}
|
|
18917
|
+
}
|
|
18918
|
+
}
|
|
18919
|
+
}
|
|
18920
|
+
}
|
|
18921
|
+
|
|
18922
|
+
p1.closest = closest;
|
|
18923
|
+
} // assign a circle to each point
|
|
18924
|
+
|
|
18925
|
+
|
|
18926
|
+
for (var _i in points) {
|
|
18927
|
+
var c = new Circle(points[_i], 2 + Math.random() * 2, 'rgba(255,255,255,0.3)');
|
|
18928
|
+
points[_i].circle = c;
|
|
18929
|
+
}
|
|
18930
|
+
} // Event handling
|
|
18931
|
+
|
|
18932
|
+
|
|
18933
|
+
function addListeners() {
|
|
18934
|
+
if (!('ontouchstart' in window)) {
|
|
18935
|
+
window.addEventListener('mousemove', mouseMove);
|
|
18936
|
+
}
|
|
18937
|
+
|
|
18938
|
+
window.addEventListener('scroll', scrollCheck);
|
|
18939
|
+
window.addEventListener('resize', resize);
|
|
18940
|
+
}
|
|
18941
|
+
|
|
18942
|
+
function animate() {
|
|
18943
|
+
if (animateHeader) {
|
|
18944
|
+
ctx.clearRect(0, 0, width, height);
|
|
18945
|
+
|
|
18946
|
+
for (var i in points) {
|
|
18947
|
+
// detect points in range
|
|
18948
|
+
if (Math.abs(getDistance(HtTwee_target, points[i])) < 4000) {
|
|
18949
|
+
points[i].active = 0.3;
|
|
18950
|
+
points[i].circle.active = 0.6;
|
|
18951
|
+
} else if (Math.abs(getDistance(HtTwee_target, points[i])) < 20000) {
|
|
18952
|
+
points[i].active = 0.1;
|
|
18953
|
+
points[i].circle.active = 0.3;
|
|
18954
|
+
} else if (Math.abs(getDistance(HtTwee_target, points[i])) < 40000) {
|
|
18955
|
+
points[i].active = 0.02;
|
|
18956
|
+
points[i].circle.active = 0.1;
|
|
18957
|
+
} else {
|
|
18958
|
+
points[i].active = 0;
|
|
18959
|
+
points[i].circle.active = 0;
|
|
18960
|
+
}
|
|
18961
|
+
|
|
18962
|
+
drawLines(points[i]);
|
|
18963
|
+
points[i].circle.draw();
|
|
18964
|
+
}
|
|
18965
|
+
}
|
|
18966
|
+
|
|
18967
|
+
requestAnimationFrame(animate);
|
|
18968
|
+
} // animation
|
|
18969
|
+
|
|
18970
|
+
|
|
18971
|
+
function initAnimation() {
|
|
18972
|
+
animate();
|
|
18973
|
+
|
|
18974
|
+
for (var i in points) {
|
|
18975
|
+
shiftPoint(points[i]);
|
|
18976
|
+
}
|
|
18977
|
+
} // Util
|
|
18978
|
+
|
|
18979
|
+
|
|
18980
|
+
function Httwee(ref) {
|
|
18981
|
+
// Main
|
|
18982
|
+
initHeader(ref);
|
|
18983
|
+
initAnimation();
|
|
18984
|
+
addListeners();
|
|
18985
|
+
}
|
|
18986
|
+
;
|
|
18987
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--14-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/ts-loader??ref--14-3!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/packages/HtTwee/index.vue?vue&type=script&lang=ts&
|
|
18988
|
+
|
|
18989
|
+
|
|
18990
|
+
|
|
18991
|
+
|
|
18992
|
+
|
|
18993
|
+
|
|
18994
|
+
|
|
18995
|
+
|
|
18996
|
+
__webpack_require__("05ed");
|
|
18997
|
+
|
|
18998
|
+
__webpack_require__("0ab0");
|
|
18999
|
+
|
|
19000
|
+
var HtTweevue_type_script_lang_ts_HtTwee = /*#__PURE__*/function (_Vue) {
|
|
19001
|
+
_inherits(HtTwee, _Vue);
|
|
19002
|
+
|
|
19003
|
+
var _super = _createSuper(HtTwee);
|
|
19004
|
+
|
|
19005
|
+
function HtTwee() {
|
|
19006
|
+
_classCallCheck(this, HtTwee);
|
|
19007
|
+
|
|
19008
|
+
return _super.apply(this, arguments);
|
|
19009
|
+
}
|
|
19010
|
+
|
|
19011
|
+
_createClass(HtTwee, [{
|
|
19012
|
+
key: "created",
|
|
19013
|
+
value: function created() {
|
|
19014
|
+
var _this = this;
|
|
19015
|
+
|
|
19016
|
+
this.$nextTick(function () {
|
|
19017
|
+
Httwee(_this.$refs["ht-twee"]);
|
|
19018
|
+
});
|
|
19019
|
+
}
|
|
19020
|
+
}]);
|
|
19021
|
+
|
|
19022
|
+
return HtTwee;
|
|
19023
|
+
}(external_commonjs_vue_commonjs2_vue_root_Vue_default.a);
|
|
19024
|
+
|
|
19025
|
+
HtTweevue_type_script_lang_ts_HtTwee = __decorate([vue_class_component_esm], HtTweevue_type_script_lang_ts_HtTwee);
|
|
19026
|
+
/* harmony default export */ var HtTweevue_type_script_lang_ts_ = (HtTweevue_type_script_lang_ts_HtTwee);
|
|
19027
|
+
// CONCATENATED MODULE: ./src/packages/HtTwee/index.vue?vue&type=script&lang=ts&
|
|
19028
|
+
/* harmony default export */ var packages_HtTweevue_type_script_lang_ts_ = (HtTweevue_type_script_lang_ts_);
|
|
19029
|
+
// CONCATENATED MODULE: ./src/packages/HtTwee/index.vue
|
|
19030
|
+
|
|
19031
|
+
|
|
19032
|
+
|
|
19033
|
+
|
|
19034
|
+
|
|
19035
|
+
/* normalize component */
|
|
19036
|
+
|
|
19037
|
+
var HtTwee_component = normalizeComponent(
|
|
19038
|
+
packages_HtTweevue_type_script_lang_ts_,
|
|
19039
|
+
HtTweevue_type_template_id_3501e065_render,
|
|
19040
|
+
HtTweevue_type_template_id_3501e065_staticRenderFns,
|
|
19041
|
+
false,
|
|
19042
|
+
null,
|
|
19043
|
+
null,
|
|
19044
|
+
null
|
|
19045
|
+
|
|
19046
|
+
)
|
|
19047
|
+
|
|
19048
|
+
/* harmony default export */ var packages_HtTwee = (HtTwee_component.exports);
|
|
19049
|
+
// CONCATENATED MODULE: ./src/packages/HtTwee/index.ts
|
|
19050
|
+
/*
|
|
19051
|
+
* @Descripttion:
|
|
19052
|
+
* @version:
|
|
19053
|
+
* @Author: hutao
|
|
19054
|
+
* @Date: 2022-04-29 16:30:37
|
|
19055
|
+
* @LastEditors: hutao
|
|
19056
|
+
* @LastEditTime: 2022-04-29 16:30:37
|
|
19057
|
+
*/
|
|
19058
|
+
|
|
19059
|
+
/*
|
|
19060
|
+
* @Descripttion:
|
|
19061
|
+
* @version:
|
|
19062
|
+
* @Author: hutao
|
|
19063
|
+
* @Date: 2021-11-15 15:00:57
|
|
19064
|
+
* @LastEditors: hutao
|
|
19065
|
+
* @LastEditTime: 2021-12-21 14:15:10
|
|
19066
|
+
*/
|
|
19067
|
+
|
|
19068
|
+
|
|
19069
|
+
packages_HtTwee.install = function (Vue) {
|
|
19070
|
+
Vue.component("HtTwee", packages_HtTwee);
|
|
19071
|
+
};
|
|
19072
|
+
|
|
19073
|
+
/* harmony default export */ var src_packages_HtTwee = (packages_HtTwee);
|
|
17641
19074
|
// CONCATENATED MODULE: ./src/packages/index.ts
|
|
17642
19075
|
|
|
17643
19076
|
|
|
@@ -17648,7 +19081,7 @@ packages_HtSelectUser.install = function (Vue) {
|
|
|
17648
19081
|
* @Author: hutao
|
|
17649
19082
|
* @Date: 2021-10-21 10:08:41
|
|
17650
19083
|
* @LastEditors: hutao
|
|
17651
|
-
* @LastEditTime: 2022-04-
|
|
19084
|
+
* @LastEditTime: 2022-04-29 16:52:52
|
|
17652
19085
|
*/
|
|
17653
19086
|
|
|
17654
19087
|
/** 下拉table选择控件 */
|
|
@@ -17667,9 +19100,10 @@ packages_HtSelectUser.install = function (Vue) {
|
|
|
17667
19100
|
|
|
17668
19101
|
|
|
17669
19102
|
|
|
19103
|
+
|
|
17670
19104
|
// 存储组件列表
|
|
17671
19105
|
|
|
17672
|
-
var components = [packages_HtBaseData, packages_SelectTable, packages_PageInfo, src_packages_HtTable, src_packages_HtExport, src_packages_HtUpload, src_packages_HtMd, src_packages_HtCountDown, src_packages_HtUploadFiles, src_packages_HtSelectBaseData, src_packages_HtSelectOrg, src_packages_HtSelectUser, packages_HtShowBaseData, packages_HtOrgInfo]; // 定义 install 方法,接收 Vue 作为参数。如果使用 use 注册插件,则所有的组件都将被注册
|
|
19106
|
+
var components = [src_packages_HtTwee, packages_HtBaseData, packages_SelectTable, packages_PageInfo, src_packages_HtTable, src_packages_HtExport, src_packages_HtUpload, src_packages_HtMd, src_packages_HtCountDown, src_packages_HtUploadFiles, src_packages_HtSelectBaseData, src_packages_HtSelectOrg, src_packages_HtSelectUser, packages_HtShowBaseData, packages_HtOrgInfo]; // 定义 install 方法,接收 Vue 作为参数。如果使用 use 注册插件,则所有的组件都将被注册
|
|
17673
19107
|
|
|
17674
19108
|
var install = function install(Vue) {
|
|
17675
19109
|
// 判断是否安装
|
|
@@ -17702,7 +19136,8 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
17702
19136
|
HtSelectUser: src_packages_HtSelectUser,
|
|
17703
19137
|
HtShowBaseData: packages_HtShowBaseData,
|
|
17704
19138
|
HtOrgInfo: packages_HtOrgInfo,
|
|
17705
|
-
HtBaseData: packages_HtBaseData
|
|
19139
|
+
HtBaseData: packages_HtBaseData,
|
|
19140
|
+
HtTwee: src_packages_HtTwee
|
|
17706
19141
|
});
|
|
17707
19142
|
// CONCATENATED MODULE: ./node_modules/@vue/cli-service/lib/commands/build/entry-lib.js
|
|
17708
19143
|
|