-
WIBUHAX0R1337
-
/
home
/
zqegovsj
/
www
/
us3web.haibo.com.cn
/
laundrypodsac
/
kr
/
js
/
[ Home ]
Create Folder
Create File
Nama File / Folder
Size
Action
mailform
--
NONE
wow
--
NONE
TMSearch.js
2.672KB
Edit File
Delete File
Rename
active.js
8.237KB
Edit File
Delete File
Rename
ajax.mail.js
1.188KB
Edit File
Delete File
Rename
appear.js
4.129KB
Edit File
Delete File
Rename
bootstrap-select.min.js
30.684KB
Edit File
Delete File
Rename
bootstrap.bundle.min.js
78.536KB
Edit File
Delete File
Rename
bootstrap.js
68.226KB
Edit File
Delete File
Rename
bootstrap.min.js
35.114KB
Edit File
Delete File
Rename
boss_filterproduct.js
2.178KB
Edit File
Delete File
Rename
camera.js
69.202KB
Edit File
Delete File
Rename
carouFredSel-6.2.1.js
35.233KB
Edit File
Delete File
Rename
cloud-zoom.1.0.3.js
15.709KB
Edit File
Delete File
Rename
cs.bossthemes.js
5.518KB
Edit File
Delete File
Rename
custom.js
2.247KB
Edit File
Delete File
Rename
feedback.js
0.765KB
Edit File
Delete File
Rename
foot.php
7.876KB
Edit File
Delete File
Rename
gdpr-cookie.js
16.294KB
Edit File
Delete File
Rename
general.js
4.236KB
Edit File
Delete File
Rename
getwidthbrowser.js
0.681KB
Edit File
Delete File
Rename
inquiryForm.js
7.04KB
Edit File
Delete File
Rename
inquiryForm_beanagent.js
7.633KB
Edit File
Delete File
Rename
jquery-1.11.2.min.js
93.687KB
Edit File
Delete File
Rename
jquery-2.1.1.min.js
82.274KB
Edit File
Delete File
Rename
jquery-2.2.4.min.js
83.576KB
Edit File
Delete File
Rename
jquery-ui.js
508.513KB
Edit File
Delete File
Rename
jquery.appear.min.js
1.787KB
Edit File
Delete File
Rename
jquery.equalheights.js
1.332KB
Edit File
Delete File
Rename
jquery.fancybox.min.js
57.141KB
Edit File
Delete File
Rename
jquery.fancybox.pack.js
22.637KB
Edit File
Delete File
Rename
jquery.form.min.js
14.903KB
Edit File
Delete File
Rename
jquery.isotope.min.js
58.878KB
Edit File
Delete File
Rename
jquery.jgrowl.js
14.691KB
Edit File
Delete File
Rename
jquery.js
87.399KB
Edit File
Delete File
Rename
jquery.meanmenu.js
5.801KB
Edit File
Delete File
Rename
jquery.min.js
82.38KB
Edit File
Delete File
Rename
jquery.mobile.customized.min.js
17.117KB
Edit File
Delete File
Rename
jquery.mousewheel.min.js
1.371KB
Edit File
Delete File
Rename
jquery.paroller.min.js
2.706KB
Edit File
Delete File
Rename
jquery.prettyPhoto.js
35.358KB
Edit File
Delete File
Rename
jquery.rd-mailform.min.js
23.84KB
Edit File
Delete File
Rename
jquery.revolution.min.js
104.369KB
Edit File
Delete File
Rename
jquery.simplr.smoothscroll.min.js
0.752KB
Edit File
Delete File
Rename
jquery.ui.totop.js
1.23KB
Edit File
Delete File
Rename
jquery.waypoints.min.js
8.626KB
Edit File
Delete File
Rename
lang.js
3.13KB
Edit File
Delete File
Rename
main.js
32.558KB
Edit File
Delete File
Rename
mapmarker.js
2.059KB
Edit File
Delete File
Rename
modal.js
7.685KB
Edit File
Delete File
Rename
modernizr-2.8.3.min.js
15.154KB
Edit File
Delete File
Rename
nav-tool.js
1.061KB
Edit File
Delete File
Rename
odometer.js
10.022KB
Edit File
Delete File
Rename
owl.carousel.min.js
39.455KB
Edit File
Delete File
Rename
parallax-scroll.js
8.72KB
Edit File
Delete File
Rename
rangeslider.min.js
40.212KB
Edit File
Delete File
Rename
script_0.js
11.731KB
Edit File
Delete File
Rename
sform.js
2.772KB
Edit File
Delete File
Rename
tilt.jquery.min.js
5.56KB
Edit File
Delete File
Rename
vendor_bak.js
445.484KB
Edit File
Delete File
Rename
wow.js
11.656KB
Edit File
Delete File
Rename
wow.min.js
6.987KB
Edit File
Delete File
Rename
/* * jQuery.appear * https://github.com/bas2k/jquery.appear/ * http://code.google.com/p/jquery-appear/ * http://bas2k.ru/ * * Copyright (c) 2009 Michael Hixson * Copyright (c) 2012-2014 Alexander Brovikov * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php) */ (function($) { $.fn.appear = function(fn, options) { var settings = $.extend({ //arbitrary data to pass to fn data: undefined, //call fn only on the first appear? one: true, // X & Y accuracy accX: 0, accY: 0 }, options); return this.each(function() { var t = $(this); //whether the element is currently visible t.appeared = false; if (!fn) { //trigger the custom event t.trigger('appear', settings.data); return; } var w = $(window); //fires the appear event when appropriate var check = function() { //is the element hidden? if (!t.is(':visible')) { //it became hidden t.appeared = false; return; } //is the element inside the visible window? var a = w.scrollLeft(); var b = w.scrollTop(); var o = t.offset(); var x = o.left; var y = o.top; var ax = settings.accX; var ay = settings.accY; var th = t.height(); var wh = w.height(); var tw = t.width(); var ww = w.width(); if (y + th + ay >= b && y <= b + wh + ay && x + tw + ax >= a && x <= a + ww + ax) { //trigger the custom event if (!t.appeared) t.trigger('appear', settings.data); } else { //it scrolled out of view t.appeared = false; } }; //create a modified fn with some additional logic var modifiedFn = function() { //mark the element as visible t.appeared = true; //is this supposed to happen only once? if (settings.one) { //remove the check w.unbind('scroll', check); var i = $.inArray(check, $.fn.appear.checks); if (i >= 0) $.fn.appear.checks.splice(i, 1); } //trigger the original fn fn.apply(this, arguments); }; //bind the modified fn to the element if (settings.one) t.one('appear', settings.data, modifiedFn); else t.bind('appear', settings.data, modifiedFn); //check whenever the window scrolls w.scroll(check); //check whenever the dom changes $.fn.appear.checks.push(check); //check now (check)(); }); }; //keep a queue of appearance checks $.extend($.fn.appear, { checks: [], timeout: null, //process the queue checkAll: function() { var length = $.fn.appear.checks.length; if (length > 0) while (length--) ($.fn.appear.checks[length])(); }, //check the queue asynchronously run: function() { if ($.fn.appear.timeout) clearTimeout($.fn.appear.timeout); $.fn.appear.timeout = setTimeout($.fn.appear.checkAll, 20); } }); //run checks when these methods are called $.each(['append', 'prepend', 'after', 'before', 'attr', 'removeAttr', 'addClass', 'removeClass', 'toggleClass', 'remove', 'css', 'show', 'hide'], function(i, n) { var old = $.fn[n]; if (old) { $.fn[n] = function() { var r = old.apply(this, arguments); $.fn.appear.run(); return r; } } }); })(jQuery);
Save!!!
© 2022 - 2023 WIBUHAXOR V1 By Lutfifakee || Padang Blackhat