���� 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/player/ |
import { clamp, setStyle } from '../utils'; export default function attrInit(art) { const { option, storage, template: { $video, $poster }, } = art; for (const key in option.moreVideoAttr) { art.attr(key, option.moreVideoAttr[key]); } if (option.muted) { art.muted = option.muted; } if (option.volume) { $video.volume = clamp(option.volume, 0, 1); } const volumeStorage = storage.get('volume'); if (typeof volumeStorage === 'number') { $video.volume = clamp(volumeStorage, 0, 1); } if (option.poster) { setStyle($poster, 'backgroundImage', `url(${option.poster})`); } if (option.autoplay) { $video.autoplay = option.autoplay; } if (option.playsInline) { $video.playsInline = true; $video['webkit-playsinline'] = true; } if (option.theme) { option.cssVar['--art-theme'] = option.theme; } for (const key in option.cssVar) { art.cssVar(key, option.cssVar[key]); } art.url = option.url; }