Files
apt-nl-map/static/Magic4/Button_Display/dist/js/fluent-reveal-effect.js
2024-12-03 16:40:54 +08:00

381 lines
11 KiB
JavaScript

/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/
/******/ // Check if module is in cache
/******/ if(installedModules[moduleId]) {
/******/ return installedModules[moduleId].exports;
/******/ }
/******/ // Create a new module (and put it into the cache)
/******/ var module = installedModules[moduleId] = {
/******/ i: moduleId,
/******/ l: false,
/******/ exports: {}
/******/ };
/******/
/******/ // Execute the module function
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
/******/
/******/ // Flag the module as loaded
/******/ module.l = true;
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/
/******/
/******/ // expose the modules object (__webpack_modules__)
/******/ __webpack_require__.m = modules;
/******/
/******/ // expose the module cache
/******/ __webpack_require__.c = installedModules;
/******/
/******/ // define getter function for harmony exports
/******/ __webpack_require__.d = function(exports, name, getter) {
/******/ if(!__webpack_require__.o(exports, name)) {
/******/ Object.defineProperty(exports, name, {
/******/ configurable: false,
/******/ enumerable: true,
/******/ get: getter
/******/ });
/******/ }
/******/ };
/******/
/******/ // getDefaultExport function for compatibility with non-harmony modules
/******/ __webpack_require__.n = function(module) {
/******/ var getter = module && module.__esModule ?
/******/ function getDefault() { return module['default']; } :
/******/ function getModuleExports() { return module; };
/******/ __webpack_require__.d(getter, 'a', getter);
/******/ return getter;
/******/ };
/******/
/******/ // Object.prototype.hasOwnProperty.call
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
/******/
/******/ // __webpack_public_path__
/******/ __webpack_require__.p = "";
/******/
/******/ // Load entry module and return exports
/******/ return __webpack_require__(__webpack_require__.s = 0);
/******/ })
/************************************************************************/
/******/ ([
/* 0 */
/***/ (function(module, exports, __webpack_require__) {
__webpack_require__(1);
module.exports = __webpack_require__(4);
/***/ }),
/* 1 */
/***/ (function(module, exports, __webpack_require__) {
var FluentRevealEffect = __webpack_require__(2)
module.exports = { FluentRevealEffect }
/***/ }),
/* 2 */
/***/ (function(module, exports, __webpack_require__) {
/*
Reveal Effect
https://github.com/d2phap/fluent-reveal-effect
MIT License
Copyright (c) 2018 Duong Dieu Phap
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
var Helpers = __webpack_require__(3)
function applyEffect(selector, options = {}) {
let is_pressed = false
let _options = {
lightColor: "rgba(255,255,255,0.25)",
gradientSize: 150,
clickEffect: false,
isContainer: false,
children: {
borderSelector: ".eff-reveal-border",
elementSelector: ".eff-reveal",
lightColor: "rgba(255,255,255,0.25)",
gradientSize: 150
}
}
// update options
_options = Object.assign(_options, options)
let els = Helpers.preProcessElements(document.querySelectorAll(selector))
function clearEffect(element) {
element.el.style.backgroundImage = element.oriBg
}
function enableBackgroundEffects(element, lightColor, gradientSize) {
//element background effect --------------------
element.el.addEventListener("mousemove", (e) => {
let x = e.pageX - Helpers.getOffset(element).left - window.scrollX
let y = e.pageY - Helpers.getOffset(element).top - window.scrollY
if (_options.clickEffect && is_pressed) {
let cssLightEffect = `radial-gradient(circle ${gradientSize}px at ${x}px ${y}px, ${lightColor}, rgba(255,255,255,0)), radial-gradient(circle ${70}px at ${x}px ${y}px, rgba(255,255,255,0), ${lightColor}, rgba(255,255,255,0), rgba(255,255,255,0))`
Helpers.drawEffect(element, x, y, lightColor, gradientSize, cssLightEffect)
}
else {
Helpers.drawEffect(element, x, y, lightColor, gradientSize)
}
})
element.el.addEventListener("mouseleave", (e) => {
clearEffect(element)
})
}
function enableClickEffects(element, lightColor, gradientSize) {
element.el.addEventListener("mousedown", (e) => {
is_pressed = true
let x = e.pageX - Helpers.getOffset(element).left - window.scrollX
let y = e.pageY - Helpers.getOffset(element).top - window.scrollY
let cssLightEffect = `radial-gradient(circle ${gradientSize}px at ${x}px ${y}px, ${lightColor}, rgba(255,255,255,0)), radial-gradient(circle ${70}px at ${x}px ${y}px, rgba(255,255,255,0), ${lightColor}, rgba(255,255,255,0), rgba(255,255,255,0))`
Helpers.drawEffect(element, x, y, lightColor, gradientSize, cssLightEffect)
})
element.el.addEventListener("mouseup", (e) => {
is_pressed = false
let x = e.pageX - Helpers.getOffset(element).left - window.scrollX
let y = e.pageY - Helpers.getOffset(element).top - window.scrollY
Helpers.drawEffect(element, x, y, lightColor, gradientSize)
})
}
//Children *********************************************
if (!_options.isContainer) {
//element background effect
els.forEach(element => {
enableBackgroundEffects(element, _options.lightColor, _options.gradientSize)
//element click effect
if (_options.clickEffect) {
enableClickEffects(element, _options.lightColor, _options.gradientSize)
}
})
}
//Container *********************************************
else {
els.forEach(element => {
// get border items list
let childrenBorder = _options.isContainer ? Helpers.preProcessElements(document.querySelectorAll(_options.children.borderSelector)) : []
//Container *********************************************
//add border effect
element.el.addEventListener("mousemove", (e) => {
for (let i = 0; i < childrenBorder.length; i++) {
let x = e.pageX - Helpers.getOffset(childrenBorder[i]).left - window.scrollX
let y = e.pageY - Helpers.getOffset(childrenBorder[i]).top - window.scrollY
if (Helpers.isIntersected(childrenBorder[i], e.clientX, e.clientY, _options.gradientSize)) {
Helpers.drawEffect(childrenBorder[i], x, y, _options.lightColor, _options.gradientSize)
}
else {
clearEffect(childrenBorder[i])
}
}
})
//clear border light effect
element.el.addEventListener("mouseleave", (e) => {
for (let i = 0; i < childrenBorder.length; i++) {
clearEffect(childrenBorder[i])
}
})
//Children *********************************************
let children = Helpers.preProcessElements(element.el.querySelectorAll(_options.children.elementSelector))
// console.log(children)
for (let i = 0; i < children.length; i++) {
//element background effect
enableBackgroundEffects(children[i], _options.children.lightColor, _options.children.gradientSize)
//element click effect
if (_options.clickEffect) {
enableClickEffects(children[i], _options.children.lightColor, _options.children.gradientSize)
}
}
})
}
}
module.exports = { applyEffect }
/***/ }),
/* 3 */
/***/ (function(module, exports) {
/*
Reveal Effect
https://github.com/d2phap/fluent-reveal-effect
MIT License
Copyright (c) 2018 Duong Dieu Phap
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
function getOffset(element) {
return {
top: element.el.getBoundingClientRect().top,
left: element.el.getBoundingClientRect().left
};
}
function drawEffect(
element,
x,
y,
lightColor,
gradientSize,
cssLightEffect = null
) {
let lightBg;
if (cssLightEffect === null) {
lightBg = `radial-gradient(circle ${gradientSize}px at ${x}px ${y}px, ${lightColor}, rgba(255,255,255,0))`;
} else {
lightBg = cssLightEffect;
}
element.el.style.backgroundImage = lightBg;
}
function preProcessElements(elements) {
let res = [];
elements.forEach(el => {
res.push({
oriBg: getComputedStyle(el)["background-image"],
el: el
});
});
return res;
}
function isIntersected(element, cursor_x, cursor_y, gradientSize) {
let cursor_area = {
left: cursor_x - gradientSize,
right: cursor_x + gradientSize,
top: cursor_y - gradientSize,
bottom: cursor_y + gradientSize
}
let el_area = {
left: element.el.getBoundingClientRect().left,
right: element.el.getBoundingClientRect().right,
top: element.el.getBoundingClientRect().top,
bottom: element.el.getBoundingClientRect().bottom
}
function intersectRect(r1, r2) {
return !(
r2.left > r1.right ||
r2.right < r1.left ||
r2.top > r1.bottom ||
r2.bottom < r1.top
)
}
let result = intersectRect(cursor_area, el_area)
return result
}
module.exports = { preProcessElements, getOffset, drawEffect, isIntersected };
/***/ }),
/* 4 */
/***/ (function(module, exports) {
// removed by extract-text-webpack-plugin
/***/ })
/******/ ]);