UNPKG

cloudinary-video-player

Version:
25 lines (23 loc) 1.53 kB
const INTERACTION_AREA_LAYOUT_LOCAL_STORAGE_NAME = 'cld-ia-layout-state'; const INTERACTION_AREAS_PREFIX = 'vp-ia'; const INTERACTION_AREAS_CONTAINER_CLASS_NAME = 'interaction-areas-container'; const INTERACTION_AREAS_TEMPLATE = { PORTRAIT: 'portrait', LANDSCAPE: 'landscape', All: 'all', CENTER: 'center' }; const INTERACTION_AREAS_THEME = { PULSING: 'pulsing', SHADOWED: 'shadowed' }; const TEMPLATE_INTERACTION_AREAS_VTT = { [INTERACTION_AREAS_TEMPLATE.PORTRAIT]: 'https://res.cloudinary.com/prod/raw/upload/v1623772481/video-player/vtts/portrait.vtt', [INTERACTION_AREAS_TEMPLATE.LANDSCAPE]: 'https://res.cloudinary.com/prod/raw/upload/v1623772303/video-player/vtts/landscape.vtt', [INTERACTION_AREAS_TEMPLATE.All]: 'https://res.cloudinary.com/prod/raw/upload/v1623250266/video-player/vtts/all.vtt', [INTERACTION_AREAS_TEMPLATE.CENTER]: 'https://res.cloudinary.com/prod/raw/upload/v1623250265/video-player/vtts/center.vtt' }; const INTERACTION_AREA_HAND_ICON = 'https://res.cloudinary.com/prod/image/upload/v1626764643/video-player/interaction-area-hand.svg'; const CLOSE_INTERACTION_AREA_LAYOUT_DELAY = 4500; const DEFAULT_INTERACTION_ARE_TRANSITION = 250; export { CLOSE_INTERACTION_AREA_LAYOUT_DELAY as C, DEFAULT_INTERACTION_ARE_TRANSITION as D, INTERACTION_AREA_HAND_ICON as I, TEMPLATE_INTERACTION_AREAS_VTT as T, INTERACTION_AREAS_PREFIX as a, INTERACTION_AREA_LAYOUT_LOCAL_STORAGE_NAME as b, INTERACTION_AREAS_CONTAINER_CLASS_NAME as c, INTERACTION_AREAS_THEME as d, INTERACTION_AREAS_TEMPLATE as e };