Mini Shell

Direktori : /home/admin/web/mcpv.demarco.ddnsfree.com/public_html/wp-includes/js/
Upload File :
Current File : /home/admin/web/mcpv.demarco.ddnsfree.com/public_html/wp-includes/js/hoverIntent.js

/*!
 * hoverIntent v1.10.2 // 2020.04.28 // jQuery v1.7.0+
 * http://briancherne.github.io/jquery-hoverIntent/
 *
 * You may use hoverIntent under the terms of the MIT license. Basically that
 * means you are free to use hoverIntent as long as this header is left intact.
 * Copyright 2007-2019 Brian Cherne
 */

/**
 * hoverIntent is similar to jQuery's built-in "hover" method except that
 * instead of firing the handlerIn function immediately, hoverIntent checks
 * to see if the user's mouse has slowed down (beneath the sensitivity
 * threshold) before firing the event. The handlerOut function is only
 * called after a matching handlerIn.
 *
 * // basic usage ... just like .hover()
 * .hoverIntent( handlerIn, handlerOut )
 * .hoverIntent( handlerInOut )
 *
 * // basic usage ... with event delegation!
 * .hoverIntent( handlerIn, handlerOut, selector )
 * .hoverIntent( handlerInOut, selector )
 *
 * // using a basic configuration object
 * .hoverIntent( config )
 *
 * @param  handlerIn   function OR configuration object
 * @param  handlerOut  function OR selector for delegation OR undefined
 * @param  selector    selector OR undefined
 * @author Brian Cherne <brian(at)cherne(dot)net>
 */

;(function(factory) {
    'use strict';
    if (typeof define === 'function' && define.amd) {
        define(['jquery'], factory);
    } else if (typeof module === 'object' && module.exports) {
        module.exports = factory(require('jquery'));
    } else if (jQuery && !jQuery.fn.hoverIntent) {
        factory(jQuery);
    }
})(function($) {
    'use strict';

    // default configuration values
    var _cfg = {
        interval: 100,
        sensitivity: 6,
        timeout: 0
    };

    // counter used to generate an ID for each instance
    var INSTANCE_COUNT = 0;

    // current X and Y position of mouse, updated during mousemove tracking (shared across instances)
    var cX, cY;

    // saves the current pointer position coordinates based on the given mousemove event
    var track = function(ev) {
        cX = ev.pageX;
        cY = ev.pageY;
    };

    // compares current and previous mouse positions
    var compare = function(ev,$el,s,cfg) {
        // compare mouse positions to see if pointer has slowed enough to trigger `over` function
        if ( Math.sqrt( (s.pX-cX)*(s.pX-cX) + (s.pY-cY)*(s.pY-cY) ) < cfg.sensitivity ) {
            $el.off(s.event,track);
            delete s.timeoutId;
            // set hoverIntent state as active for this element (permits `out` handler to trigger)
            s.isActive = true;
            // overwrite old mouseenter event coordinates with most recent pointer position
            ev.pageX = cX; ev.pageY = cY;
            // clear coordinate data from state object
            delete s.pX; delete s.pY;
            return cfg.over.apply($el[0],[ev]);
        } else {
            // set previous coordinates for next comparison
            s.pX = cX; s.pY = cY;
            // use self-calling timeout, guarantees intervals are spaced out properly (avoids JavaScript timer bugs)
            s.timeoutId = setTimeout( function(){compare(ev, $el, s, cfg);} , cfg.interval );
        }
    };

    // triggers given `out` function at configured `timeout` after a mouseleave and clears state
    var delay = function(ev,$el,s,out) {
        var data = $el.data('hoverIntent');
        if (data) {
            delete data[s.id];
        }
        return out.apply($el[0],[ev]);
    };

    // checks if `value` is a function
    var isFunction = function(value) {
        return typeof value === 'function';
    };

    $.fn.hoverIntent = function(handlerIn,handlerOut,selector) {
        // instance ID, used as a key to store and retrieve state information on an element
        var instanceId = INSTANCE_COUNT++;

        // extend the default configuration and parse parameters
        var cfg = $.extend({}, _cfg);
        if ( $.isPlainObject(handlerIn) ) {
            cfg = $.extend(cfg, handlerIn);
            if ( !isFunction(cfg.out) ) {
                cfg.out = cfg.over;
            }
        } else if ( isFunction(handlerOut) ) {
            cfg = $.extend(cfg, { over: handlerIn, out: handlerOut, selector: selector } );
        } else {
            cfg = $.extend(cfg, { over: handlerIn, out: handlerIn, selector: handlerOut } );
        }

        // A private function for handling mouse 'hovering'
        var handleHover = function(e) {
            // cloned event to pass to handlers (copy required for event object to be passed in IE)
            var ev = $.extend({},e);

            // the current target of the mouse event, wrapped in a jQuery object
            var $el = $(this);

            // read hoverIntent data from element (or initialize if not present)
            var hoverIntentData = $el.data('hoverIntent');
            if (!hoverIntentData) { $el.data('hoverIntent', (hoverIntentData = {})); }

            // read per-instance state from element (or initialize if not present)
            var state = hoverIntentData[instanceId];
            if (!state) { hoverIntentData[instanceId] = state = { id: instanceId }; }

            // state properties:
            // id = instance ID, used to clean up data
            // timeoutId = timeout ID, reused for tracking mouse position and delaying "out" handler
            // isActive = plugin state, true after `over` is called just until `out` is called
            // pX, pY = previously-measured pointer coordinates, updated at each polling interval
            // event = string representing the namespaced event used for mouse tracking

            // clear any existing timeout
            if (state.timeoutId) { state.timeoutId = clearTimeout(state.timeoutId); }

            // namespaced event used to register and unregister mousemove tracking
            var mousemove = state.event = 'mousemove.hoverIntent.hoverIntent'+instanceId;

            // handle the event, based on its type
            if (e.type === 'mouseenter') {
                // do nothing if already active
                if (state.isActive) { return; }
                // set "previous" X and Y position based on initial entry point
                state.pX = ev.pageX; state.pY = ev.pageY;
                // update "current" X and Y position based on mousemove
                $el.off(mousemove,track).on(mousemove,track);
                // start polling interval (self-calling timeout) to compare mouse coordinates over time
                state.timeoutId = setTimeout( function(){compare(ev,$el,state,cfg);} , cfg.interval );
            } else { // "mouseleave"
                // do nothing if not already active
                if (!state.isActive) { return; }
                // unbind expensive mousemove event
                $el.off(mousemove,track);
                // if hoverIntent state is true, then call the mouseOut function after the specified delay
                state.timeoutId = setTimeout( function(){delay(ev,$el,state,cfg.out);} , cfg.timeout );
            }
        };

        // listen for mouseenter and mouseleave
        return this.on({'mouseenter.hoverIntent':handleHover,'mouseleave.hoverIntent':handleHover}, cfg.selector);
    };
});
The Pochette Metis is an ideal companion if you’re in search – Base de données MCPV "Prestataires"

The Pochette Metis is an ideal companion if you’re in search

Luxurious Designer Replica Handbags Online Retailer Bag Copy Co

With 10 Years of Experience in Sourcing products from china,We will share data of tips on how to wholesale merchandise from china and the way different sorts of products are made in China. We offer a unique answer to source premium provider replica bags, fulfill your orders easier, increase your income Replica Handbags, and simplify your corporation.. If you plan to sell replicas on-line, we can advise you on the means to stay on the proper side of the regulation and avoid getting into bother. Do not hesitate to contact Leeline Sourcing when you have any questions concerning this matter. The first copy is the same copy of an genuine product without altering its design and specifications. These copies are made with low-quality material but principally look like the unique one.

To help them out, EJET has shortlisted 5 cities where not solely replica baggage, but different leather merchandise can be found. ‘Celebrity Handbags’ is a well-known website that offers a quantity of duplicate luggage of different well-known brands like Dior, Gucci, Celine, Louis Vuitton, Hermes, Prada, etc. So for, well-established retailers which have an enormous customer demand for pretend designer bags, they need to undoubtedly go for Made in China. Yes it’s protected to buy fake designer bags, however know that you simply get what you pay for and the standard won’t be unhealthy but not nearly as good as the unique. Knock-off bags are replicas of the unique and fake to be the same as it.

In this article replica bags, we’ll uncover what sellers of reproduction Gucci controllato products don’t need you to know, and the way to shield yourself from being deceived. If a purchaser is on the lookout for a real product, they should only buy from designated licensed retailers of the real purse. They should ask resellers for hard proof that the bag is actual. Some “super fakes” can cost hundreds of dollars and be nicely definitely value the excessive price as nicely. Of course replica bags online replica bags, shopping for in-person is at all times one of the best ways to determine quality, as the look and feel of a bag is rarely truly discernible from photos. The drawback is that super-fake handbags are hard to tell from the actual deal and their value could additionally be close to the genuine article.

They provide a couple of thousand Louis Vuitton luggage and prices are normally multiple thousand dollars. You also can read some buyer evaluations to help you determine the sellers in AliExpress. There are some photos of the particular merchandise with logos from the shoppers within the suggestions. If buying from Alibaba Replica Bags fake bags, you have to meet a MOQ set by suppliers on it, which is normally high and not really easy to decrease. And compared to DHgate, most replica bag suppliers on Alibaba don’t show detailed product listings on their outlets. Usually, they only present their product categories or manufacturers in an image with texts only.

This is a bit trickier should you’re buying second-hand, however it’s a good sign if it has the authenticity paperwork with it. Designer handbags comprise labels telling you the means to correctly care for your very expensive funding. If these are lacking, there’s a risk somebody ripped them out, but the extra likely rationalization is that the bag is pretend. The Pochette Metis is an ideal companion if you’re in search of a small, cute bag. It has an adjustable strap, which you can use on casual days and night time outs. Although petite, you’ll be stunned by the objects it can carry.

The woven leather has held up extremely nicely and the craftsmanship is top-tier replica bags, and I love that there’s no loud branding or logos. It fit greater than I anticipated replica bags, and I loved that I might tuck within the strap and turn it into a clutch for fancier outings. I also had a really nice experience with the in-store customer support, which is honestly uncommon today, even with high finish manufacturers. I assume what sets Bottega apart is how timeless the designs are particularly the woven pieces. They’re trendy and trend-aware with out ever feeling like they’re attempting too hard or copying others. I actually believe Bottega is an investment bag because they do issues their very own way they usually do it very well.

We’re not a reseller scraping inventory together—we’re a curated replica shop that treats sourcing significantly. There’s a purpose you won’t find these items on typical reproduction marketplaces. They’re sourced specifically for this retailer and stored unique to Bag Copy Co.

Luxurious Designer Replica Handbags Online Retailer Bag Copy Co With 10 Years of Experience in Sourcing products from china,We will share data of tips on how to wholesale merchandise from china and the way different sorts of products are made in China. We offer a unique answer to source premium provider replica bags, fulfill your orders…

Leave a Reply

Your email address will not be published. Required fields are marked *