Prevent Android chrome from going idle / auto-locking / sleeping phone?

不羁的心 提交于 2019-12-01 16:53:51

问题


I need to do on the website some feature to disabled idle/sleep phone. Does anyone try make this on phone with android ? is it in any way possible?


回答1:


We strongly don't encourage developers to do this at all. However it is possible. You can simply have a video playing on the page and the device won't go to sleep. This means you could have single frame video set to auto-loop and play (requires a user interaction)

Richard Tibbett has created NoSleep.js to simplify the process for developers.




回答2:


JavaScript in Chrome on Android (7.0) indeed shuts down after 5 min in sleep mode. Aaargh!

To prevent that, we need e.g. an audio object:

<audio id="dummyAudio">
   <source src="silent.ogg" type="audio/ogg">
   <source src="silent.mp3" type="audio/mpeg">
</audio>

and play it at regular intervals:

function playDummyAudio() { dummyAudio.play(); }    
$(function() {
   var dummyAudio = document.querySelector('#dummyAudio');
   window.addEventListener(playDummyAudio, 60 * 1000);
}

Note that the Audio object has to be "unlocked" in a user gesture callback. This can be accomplished e.g. by having a grey CSS overlay with a big fat dummy "Start" button, whose onClick() callback only hides the overlay and calls dummyAudio.load().




回答3:


There is an experimental implementation of Wake Lock API (http://www.w3.org/TR/wake-lock/) in Chromium starting I believe from version 48.0.2551.0. Though this only works when the experimental features are enabled in the browser e.g. via --enable-experimental-web-platform-features command line switch, so this is not yet useful for the general audience. In the meantime I think it is possible to use the video playback trick as suggested by Kinlan.



来源:https://stackoverflow.com/questions/33933555/prevent-android-chrome-from-going-idle-auto-locking-sleeping-phone

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!