���� 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/control/ |
import { secondToTime, isMobile } from '../utils'; export default function time(option) { return (art) => ({ ...option, style: isMobile ? { fontSize: '12px', padding: '0 5px', } : { cursor: 'auto', padding: '0 10px', }, mounted: ($control) => { function getTime() { const newTime = `${secondToTime(art.currentTime)} / ${secondToTime(art.duration)}`; if (newTime !== $control.innerText) { $control.innerText = newTime; } } getTime(); const events = ['video:loadedmetadata', 'video:timeupdate', 'video:progress']; for (let index = 0; index < events.length; index++) { art.on(events[index], getTime); } }, }); }