purple-technology / react-camera-pro

Mobile first camera component for React.
MIT License
182 stars 89 forks source link

Remove icon play and pause on iphone 11 ++ with battery saving mode is on #34

Open Juanryhn opened 2 years ago

Juanryhn commented 2 years ago

I found an issue that on iphone 11 ++ with saving battery mode is on will show an icon play and pause. How do I remove it ?. Thank you in advance

KhanhDuy-123 commented 1 year ago

const video = document.querySelector('video'); video?.setAttribute('playsinline', ''); video?.setAttribute('webkit-playsinline', ''); video?.setAttribute('autoplay', ''); video?.setAttribute('width', ${sizes.WIDTH}px); video?.setAttribute('height', ${sizes.HEIGHT}px); video?.removeAttribute('controls');

i added it and it worked