Supportforum

Help, Feedback, Feature-Requests, Tipps for OASIS-SVN

Dear users and customers in Russia and Belarus
Please understand that we will currently not accept any orders from the Russian Federation or Belarus during the current conflict and the illegal invasion of Ukraine.
Also we will not offer any support or technical assistance for the affected countries.
We feel obliged to support the wide network of sanctions and to take a clear stance.
#StandWithUkraine

Bildschirmschoner für Daueranzeigen

GillesB created the topic: Bildschirmschoner für Daueranzeigen

Seit einiger Zeit verwende ich ein 55"-Display mit einer HTML-Seite als Statusanzeige im 24/7 Betrieb.
Damit hier nicht "einbrennt" habe ich dazu mit ein bisschen JavaScript und jQuery eine Art "Bildshirmschoner" realisiert.
Das Ergebnis ist eine 2 Pixel breite vertikale Linie, die pro Minute ca. 1x über den Bildschirm läuft und dafür sorgt, dass jedes Pixel mindest 1x schwarz und 1x weiss wird.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Daueranzeige</title>
<script src="javascript/jquery/jquery.js" type="text/javascript"></script>
<style type="text/css">
div#saver {
background-color: black;
border-right: 1px solid white;
display: none;
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 2px;
z-index: 1000
}
</style>
</head>

<body style="overflow:hidden">
<div id="saver"></div>
</body>

<script type="text/javascript">
var x = 1;
var b = $('body').width();
$().ready(function() {
$('#saver').show();
setInterval('saver()', 30);
});
function saver() {
if (x >= b) x = 0;
x = x + 1;
$('#saver').offset({ top: 0, left: x });
}
</script>

</html>
#256

Please Log in to join the conversation.

Warning: DOMDocument::loadHTML(): Unexpected end tag : li in Entity, line: 2 in /var/hosting/web/usr0000002/dev2dev.de/templates/yoo_finch/warp/src/Warp/Helper/DomHelper.php on line 47 Warning: DOMDocument::loadHTML(): Unexpected end tag : ul in Entity, line: 2 in /var/hosting/web/usr0000002/dev2dev.de/templates/yoo_finch/warp/src/Warp/Helper/DomHelper.php on line 47
We use cookies and embedded fonts on our website that are essential for the operation of the site. You can decide for yourself whether you want to allow cookies or not. Please note that if you reject them, you may not be able to use all the functionalities of the site.