Leser: 4
2024-10-18T14:09:23 GwenDragonDann wird wohl nur die wake lock api helfen wie ich im Post bei "Andere Lösung" schrieb.
2024-10-18T14:09:23 GwenDragonDann wird wohl nur die Screen Wake Lock API helfen wie ich im Post bei "Andere Lösung" schrieb.
QuoteSo how does NoSleep.js prevent the sleep effect? NoSleep.js mocks a tiny mp4 video and continuously plays it, which works because browsers know enough to not signal sleep when a video is playing. What a clever way to prevent the device from sleeping!
2024-10-19T09:59:42 GwenDragonSchön, dass du es testen konntest und es funktioniert.
Das JS muss ich mir merken.
1
2
3
4
5
6
7
<video controls width="1" src="/astjoch.mp4" loop="true" id="vmock"></video>
<script>
window.onclick = function vplay(){
document.getElementById('vmock').play();
document.body.style.backgroundColor = "#20B2AA";
}
</script>