-
WIBUHAX0R1337
-
/
home
/
zqegovsj
/
www
/
us3web.haibo.com.cn
/
zjshinertoys
/
js
/
[ Home ]
Create Folder
Create File
Nama File / Folder
Size
Action
mailform
--
NONE
active.js
7.981KB
Edit File
Delete File
Rename
active_bak.js
11.72KB
Edit File
Delete File
Rename
boss_filterproduct.js
2.094KB
Edit File
Delete File
Rename
camera.js
66.984KB
Edit File
Delete File
Rename
color-switcher.js
3.188KB
Edit File
Delete File
Rename
cs.bossthemes.js
5.309KB
Edit File
Delete File
Rename
custom-magnificpopup.js
1.291KB
Edit File
Delete File
Rename
custom-modalvideo.js
0.133KB
Edit File
Delete File
Rename
custom.js
2.17KB
Edit File
Delete File
Rename
drive-me-plugin.js
280.451KB
Edit File
Delete File
Rename
general.js
4.045KB
Edit File
Delete File
Rename
imageloaded.pkgd.min.js
5.313KB
Edit File
Delete File
Rename
industry.js
1.822KB
Edit File
Delete File
Rename
ismobile.js
2.051KB
Edit File
Delete File
Rename
jquery.counterup.min.js
1.042KB
Edit File
Delete File
Rename
jquery.fancybox.pack.js
22.615KB
Edit File
Delete File
Rename
jquery.magnific-popup.min.js
19.747KB
Edit File
Delete File
Rename
jquery.revolution.min.js
104.362KB
Edit File
Delete File
Rename
mailchimp.js
1.956KB
Edit File
Delete File
Rename
owl.carousel.js
39.454KB
Edit File
Delete File
Rename
slicknav.js
6.108KB
Edit File
Delete File
Rename
superfish.js
11.076KB
Edit File
Delete File
Rename
wow.min.js
7.964KB
Edit File
Delete File
Rename
/* * jQuery Superfish Menu Plugin - v1.7.4 * Copyright (c) 2013 Joel Birch * * Dual licensed under the MIT and GPL licenses: * http://www.opensource.org/licenses/mit-license.php * http://www.gnu.org/licenses/gpl.html */ (function ($, window) { "use strict"; var methods = (function () { // private properties and methods go here var c = { bcClass: 'sf-breadcrumb', menuClass: 'sf-js-enabled', anchorClass: 'sf-with-ul', menuArrowClass: 'sf-arrows' }, ios = (function () { var ios = /iPhone|iPad|iPod/i.test(navigator.userAgent); if (ios) { // iOS clicks only bubble as far as body children $(window).load(function () { $('body').children().on('click', $.noop); }); } return ios; })(), wp7 = (function () { var style = document.documentElement.style; return ('behavior' in style && 'fill' in style && /iemobile/i.test(navigator.userAgent)); })(), toggleMenuClasses = function ($menu, o) { var classes = c.menuClass; if (o.cssArrows) { classes += ' ' + c.menuArrowClass; } $menu.toggleClass(classes); }, setPathToCurrent = function ($menu, o) { return $menu.find('li.' + o.pathClass).slice(0, o.pathLevels) .addClass(o.hoverClass + ' ' + c.bcClass) .filter(function () { return ($(this).children(o.popUpSelector).hide().show().length); }).removeClass(o.pathClass); }, toggleAnchorClass = function ($li) { $li.children('a').toggleClass(c.anchorClass); }, toggleTouchAction = function ($menu) { var touchAction = $menu.css('ms-touch-action'); touchAction = (touchAction === 'pan-y') ? 'auto' : 'pan-y'; $menu.css('ms-touch-action', touchAction); }, applyHandlers = function ($menu, o) { var targets = 'li:has(' + o.popUpSelector + ')'; if ($.fn.hoverIntent && !o.disableHI) { $menu.hoverIntent(over, out, targets); } else { $menu .on('mouseenter.superfish', targets, over) .on('mouseleave.superfish', targets, out); } var touchevent = 'MSPointerDown.superfish'; if (!ios) { touchevent += ' touchend.superfish'; } if (wp7) { touchevent += ' mousedown.superfish'; } $menu .on('focusin.superfish', 'li', over) .on('focusout.superfish', 'li', out) .on(touchevent, 'a', o, touchHandler); }, touchHandler = function (e) { var $this = $(this), $ul = $this.siblings(e.data.popUpSelector); if ($ul.length > 0 && $ul.is(':hidden')) { $this.one('click.superfish', false); if (e.type === 'MSPointerDown') { $this.trigger('focus'); } else { $.proxy(over, $this.parent('li'))(); } } }, over = function () { var $this = $(this), o = getOptions($this); clearTimeout(o.sfTimer); $this.siblings().superfish('hide').end().superfish('show'); }, out = function () { var $this = $(this), o = getOptions($this); if (ios) { $.proxy(close, $this, o)(); } else { clearTimeout(o.sfTimer); o.sfTimer = setTimeout($.proxy(close, $this, o), o.delay); } }, close = function (o) { o.retainPath = ($.inArray(this[0], o.$path) > -1); this.superfish('hide'); if (!this.parents('.' + o.hoverClass).length) { o.onIdle.call(getMenu(this)); if (o.$path.length) { $.proxy(over, o.$path)(); } } }, getMenu = function ($el) { return $el.closest('.' + c.menuClass); }, getOptions = function ($el) { return getMenu($el).data('sf-options'); }, resizeBg = function () { if ($(window).width() > 767 && $.fn.superfish.defaults.fakeBg ) { var page = $($.fn.superfish.defaults.fakeBgLimiter); var obj = $('.sub-menu'); var offset = $(page).offset(); var x = offset.left; var x1 = $(obj).offset().left; var width = $(page).width(); $('.fake-bg').css( { left: (x - x1), width: width } ); } }; return { // public methods hide: function (instant) { if (this.length) { var $this = this, o = getOptions($this); if (!o) { return this; } var not = (o.retainPath === true) ? o.$path : '', $ul = $this.find('li.' + o.hoverClass).add(this).not(not).removeClass(o.hoverClass).children(o.popUpSelector), speed = o.speedOut; if (instant) { $ul.show(); speed = 0; } o.retainPath = false; o.onBeforeHide.call($ul); $ul.children('li').css({opacity: 0}); $ul.stop(true, true).animate(o.animationOut, { duration: speed, complete: function () { var $this = $(this); o.onHide.call($this); } }); } return this; }, show: function () { var o = getOptions(this); if (!o) { return this; } var $this = this.addClass(o.hoverClass), $ul = $this.children(o.popUpSelector); o.onBeforeShow.call($ul); $ul.stop(true, true).animate(o.animation, { duration: o.speed, step: function () { if ($(this).css('display') != 'none') { resizeBg(); } }, complete: function () { o.onShow.call($ul); $ul.children('li').animate({opacity: 1}, 'normal'); } }); return this; }, destroy: function () { return this.each(function () { var $this = $(this), o = $this.data('sf-options'), $hasPopUp; if (!o) { return false; } $hasPopUp = $this.find(o.popUpSelector).parent('li'); clearTimeout(o.sfTimer); toggleMenuClasses($this, o); toggleAnchorClass($hasPopUp); toggleTouchAction($this); // remove event handlers $this.off('.superfish').off('.hoverIntent'); // clear animation's inline display style $hasPopUp.children(o.popUpSelector).attr('style', function (i, style) { return style.replace(/display[^;]+;?/g, ''); }); // reset 'current' path classes o.$path.removeClass(o.hoverClass + ' ' + c.bcClass).addClass(o.pathClass); $this.find('.' + o.hoverClass).removeClass(o.hoverClass); o.onDestroy.call($this); $this.removeData('sf-options'); }); }, init: function (op) { if ($.fn.superfish.defaults.fakeBg) { $(window).on('resize', resizeBg); $(window).on('orientationchange', resizeBg); $('.sub-menu').prepend('<div class="fake-bg"></div>'); resizeBg(); } return this.each(function () { var $this = $(this); if ($this.data('sf-options')) { return false; } var o = $.extend({}, $.fn.superfish.defaults, op), $hasPopUp = $this.find(o.popUpSelector).parent('li'); o.$path = setPathToCurrent($this, o); $this.data('sf-options', o); toggleMenuClasses($this, o); toggleAnchorClass($hasPopUp); toggleTouchAction($this); applyHandlers($this, o); $hasPopUp.not('.' + c.bcClass).superfish('hide', true); o.onInit.call(this); }); } }; })(); $.fn.superfish = function (method, args) { if (methods[method]) { return methods[method].apply(this, Array.prototype.slice.call(arguments, 1)); } else if (typeof method === 'object' || !method) { return methods.init.apply(this, arguments); } else { return $.error('Method ' + method + ' does not exist on jQuery.fn.superfish'); } }; $.fn.superfish.defaults = { popUpSelector: 'ul,.sf-mega', // within menus context hoverClass: 'sfHover', pathClass: 'overrideThisToUse', fakeBg: false, fakeBgLimiter: '.page', pathLevels: 1, delay: 800, animation: {height: 'show'}, animationOut: {height: 'hide'}, speed: 'normal', speedOut: 'fast', cssArrows: true, disableHI: false, onInit: $.noop, onBeforeShow: $.noop, onShow: $.noop, onBeforeHide: $.noop, onHide: $.noop, onIdle: $.noop, onDestroy: $.noop }; // soon to be deprecated $.fn.extend({ hideSuperfishUl: methods.hide, showSuperfishUl: methods.show }); })(jQuery, window); $(window).load(function () { $('.sf-menu').superfish(); });
© 2022 - 2023 WIBUHAXOR V1 By Lutfifakee || Padang Blackhat