ÿØÿà 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/netphim/layout/default/node_modules/artplayer/src/plugins/ |
export default function miniProgressBar(art) { art.on('ready', () => { art.layers.add({ name: 'mini-progress-bar', mounted($progressBar) { art.on('destroy', () => { $progressBar.style.display = 'none'; }); art.on('video:timeupdate', () => { $progressBar.style.width = `${art.played * 100}%`; }); art.on('setBar', (type, percentage) => { if (type === 'played') { $progressBar.style.width = `${percentage * 100}%`; } }); }, }); }); return { name: 'mini-progress-bar', }; }