Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,我想知道是否有 js 或其他方法可以防止设备在 iOS Web 应用程序中进入睡眠状态。
如果您正在谈论使用 webview 的 iOS 应用程序,请从 js 本地调用以下方法。这需要原生 iOS 应用程序才能工作。
application.idleTimerDisabled = YES
正如其他人指出的那样,真正的网络应用程序(非本机)的另一个技巧是不断播放音频文件。
<audio src="loop.mp3" onended="this.play();" controls="controls" autobuffer></audio>