Files

copied
Last update 2 months 4 days by Arnaud-Apu-Fanovard
Files0 - DATASHEET00 - LIENESP32-C3 Espressif Systems _ Mouser Belgique_files
..
1.560a1707e927ff25da07.chunk.js.téléchargement
12.0ce80e99217aaa963082.chunk.js.téléchargement
125438959.jpg
153508963.jpg
174695580.jpg
186245946(1).jpg
186245946.jpg
192264753.jpg
7.ceffb52fd15d9edebb86.chunk.js.téléchargement
973062653.html
AooPopupModal.js.téléchargement
AutoSuggestion.css
AutoSuggestionM4.js.téléchargement
CPNComponent.js.téléchargement
CPNComponent.min.css
CoreModule.js.téléchargement
CountdownClock.js.téléchargement
CustomerPartNumber.js.téléchargement
DataLayerUtils.js.téléchargement
DataTables.js.téléchargement
ESP32-C3_SPL.jpg
EmbeddedTargetModule.js.téléchargement
FlyoutMenuKeyboard.js.téléchargement
GlobalActionBar.js.téléchargement
HamburgerMenu_new.js.téléchargement
HdrProductsMenu.js.téléchargement
LivePerson.js.téléchargement
Minicart.js.téléchargement
ModalFocus.js.téléchargement
Neo4jBase.js.téléchargement
Pixels
Product.js.téléchargement
Product.min.css
ProductImage.js.téléchargement
ProductImagesModal.js.téléchargement
ProductPricing.js.téléchargement
QuickViewModal.js.téléchargement
QuickViewModal.min.css
SearchHistory.js.téléchargement
ShippingInstructions.min.css
SkipToMainContent.js.téléchargement
WebResponsiveDialogModule.js.téléchargement
XP8WW-5UC34-XF3N8-CFN7L-ZFYWG
XQxkB
_ProductImagesModal.min.css
activityi(1).html
activityi(2).html
activityi(3).html
activityi(4).html
activityi.html
analytics.js.téléchargement
angular.min.js.téléchargement
aoopopup.min.css
be.gif
bg-overlay.js.téléchargement
bootstrap.min.js.téléchargement
bootstrap3.3.7.min.css
colorbox.css
conditional-validation.js.téléchargement
dc_pre=CI_h1vfc2YgDFfdeQQIdaOkyTw
dc_pre=CNP04ffc2YgDFUFY9ggdh5IjAQ
default.js.téléchargement
dekAB
desktopEmbedded.js.téléchargement
destination
destination(1)
destination(2)
domUtils.js.téléchargement
ec.js.téléchargement
elqCfg.min.js.téléchargement
espressif.png
external.css
f(1).txt
f(2).txt
f.txt
fbevents.js.téléchargement
fs.js.téléchargement
gtm.js.téléchargement
headerFooterGA4.js.téléchargement
icon.php
insight.min.js.téléchargement
integrations
jQuery-menu-aim.js.téléchargement
jquery-3.5.1.min.js.téléchargement
jquery-ui-1.10.3.custom.min.css
jquery-ui-1.12.1-migration.js.téléchargement
jquery-ui.custom.css
jquery-ui.min.css
jquery.autoSuggestWithBaseParts.js.téléchargement
jquery.colorbox.js.téléchargement
jquery.dataTables.css
jquery.dataTables.js.téléchargement
jquery.dataTables_themeroller.css
jquery.hoverIntent.min.js.téléchargement
jquery.plugins2.js.téléchargement
jquery.validate-1.20.0.js.téléchargement
jquery.validate.customization.js.téléchargement
jquery.validate.unobtrusive-3.2.11.js.téléchargement
js
jsonp
knockout-3.5.1.js.téléchargement
latest.js.téléchargement
lazyloadevent.js.téléchargement
lazysizes.min.js.téléchargement
ls.noscript.min.js.téléchargement
ls.parent-fit.min.js.téléchargement
magic360.css
magic360.js.téléchargement
magiczoomplus.css
magiczoomplus.js.téléchargement
mouser-reg-logo-trim.png
otBannerSdk.js.téléchargement
otSDKStub.js.téléchargement
pixel.js.téléchargement
plugin.js.téléchargement
saved_resource
share-button.js.téléchargement
site.min.css
spinner.gif
storage.secure.min.html
storage.secure.min.js.téléchargement
surveylogicinstance.min.js.téléchargement
tag.js.téléchargement
tags.js.téléchargement
tcs.dhj
thickbox.css
ui-framework.js.téléchargement
validation.min.css
jquery.hoverIntent.min.js.téléchargement
/*! * hoverIntent v1.10.1 // 2019.10.05 // 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 */ !function (factory) { "use strict"; "function" == typeof define && define.amd ? define(["jquery"], factory) : "object" == typeof module && module.exports ? module.exports = factory(require("jquery")) : jQuery && !jQuery.fn.hoverIntent && factory(jQuery) }(function ($) { "use strict"; function track(ev) { cX = ev.pageX, cY = ev.pageY } var cX, cY, _cfg = { interval: 100, sensitivity: 6, timeout: 0 }, INSTANCE_COUNT = 0, compare = function (ev, $el, s, cfg) { if (Math.sqrt((s.pX - cX) * (s.pX - cX) + (s.pY - cY) * (s.pY - cY)) < cfg.sensitivity) return $el.off(s.event, track), delete s.timeoutId, s.isActive = !0, ev.pageX = cX, ev.pageY = cY, delete s.pX, delete s.pY, cfg.over.apply($el[0], [ev]); s.pX = cX, s.pY = cY, s.timeoutId = setTimeout(function () { compare(ev, $el, s, cfg) }, cfg.interval) }; $.fn.hoverIntent = function (handlerIn, handlerOut, selector) { var instanceId = INSTANCE_COUNT++, cfg = $.extend({}, _cfg); $.isPlainObject(handlerIn) ? (cfg = $.extend(cfg, handlerIn), typeof cfg.out === "function" || (cfg.out = cfg.over)) : cfg = typeof handlerOut === "function" ? $.extend(cfg, { over: handlerIn, out: handlerOut, selector: selector }) : $.extend(cfg, { over: handlerIn, out: handlerIn, selector: handlerOut }); function handleHover(e) { var ev = $.extend({}, e), $el = $(this), hoverIntentData = $el.data("hoverIntent"); hoverIntentData || $el.data("hoverIntent", hoverIntentData = {}); var state = hoverIntentData[instanceId]; state || (hoverIntentData[instanceId] = state = { id: instanceId }), state.timeoutId && (state.timeoutId = clearTimeout(state.timeoutId)); var mousemove = state.event = "mousemove.hoverIntent.hoverIntent" + instanceId; if ("mouseenter" === e.type) { if (state.isActive) return; state.pX = ev.pageX, state.pY = ev.pageY, $el.off(mousemove, track).on(mousemove, track), state.timeoutId = setTimeout(function () { compare(ev, $el, state, cfg) }, cfg.interval) } else { if (!state.isActive) return; $el.off(mousemove, track), state.timeoutId = setTimeout(function () { !function (ev, $el, s, out) { var data = $el.data("hoverIntent"); data && delete data[s.id], out.apply($el[0], [ev]) }(ev, $el, state, cfg.out) }, cfg.timeout) } } return this.on({ "mouseenter.hoverIntent": handleHover, "mouseleave.hoverIntent": handleHover }, cfg.selector) } });
Report a bug