���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /var/www/html/video/layout/js/node_modules/artplayer/src/utils/ |
import { isMobile } from './compatibility'; export function query(selector, parent = document) { return parent.querySelector(selector); } export function queryAll(selector, parent = document) { return Array.from(parent.querySelectorAll(selector)); } export function addClass(target, className) { return target.classList.add(className); } export function removeClass(target, className) { return target.classList.remove(className); } export function hasClass(target, className) { return target.classList.contains(className); } export function append(parent, child) { if (child instanceof Element) { parent.appendChild(child); } else { parent.insertAdjacentHTML('beforeend', String(child)); } return parent.lastElementChild || parent.lastChild; } export function remove(child) { return child.parentNode.removeChild(child); } export function setStyle(element, key, value) { element.style[key] = value; return element; } export function setStyles(element, styles) { for (const key in styles) { setStyle(element, key, styles[key]); } return element; } export function getStyle(element, key, numberType = true) { const value = window.getComputedStyle(element, null).getPropertyValue(key); return numberType ? parseFloat(value) : value; } export function sublings(target) { return Array.from(target.parentElement.children).filter((item) => item !== target); } export function inverseClass(target, className) { sublings(target).forEach((item) => removeClass(item, className)); addClass(target, className); } export function tooltip(target, msg, pos = 'top') { if (isMobile) return; target.setAttribute('aria-label', msg); addClass(target, 'hint--rounded'); addClass(target, `hint--${pos}`); } export function isInViewport(el, offset = 0) { const rect = el.getBoundingClientRect(); const windowHeight = window.innerHeight || document.documentElement.clientHeight; const windowWidth = window.innerWidth || document.documentElement.clientWidth; const vertInView = rect.top - offset <= windowHeight && rect.top + rect.height + offset >= 0; const horInView = rect.left - offset <= windowWidth + offset && rect.left + rect.width + offset >= 0; return vertInView && horInView; } export function includeFromEvent(event, target) { return event.composedPath && event.composedPath().indexOf(target) > -1; } export function replaceElement(newChild, oldChild) { oldChild.parentNode.replaceChild(newChild, oldChild); return newChild; } export function createElement(tag) { return document.createElement(tag); } export function getIcon(key = '', html = '') { const icon = createElement('i'); addClass(icon, 'art-icon'); addClass(icon, `art-icon-${key}`); append(icon, html); return icon; } export function setStyleText(id, style) { const $style = document.getElementById(id); if ($style) { $style.textContent = style; } else { const $style = createElement('style'); $style.id = id; $style.textContent = style; document.head.appendChild($style); } }