Low power mode causing background gif to pause

Hey everyone, at the moment, our website has a pause sign on the website on mobile when the phone is on low battery mode. Is there a script we can run to bypass the low battery mode pause?


Here is my public share link: [LINK][Webflow - lkey studios]

Atm, here is our script to randomize background gifs:

<script>

var Webflow = Webflow || [];
Webflow.push(function() {
  var bg =  $('.background-video-wrap').children();
  bg.eq( Math.floor(Math.random() * bg.length) ).show().siblings().remove();
});
</script>

To my knowledge, no.

Most of my research is with video files though and not gif.

lots of wrong answers here but the March 2022 answer has some interesting ideas: ios - Low power mode detection in JavaScript for iOS11? - Stack Overflow