I am located in .
Put the content of your screensaver here!
(These parameters will be sent to your screensaver when it loads)
<body>
<img id="screen" />
</body>
<script>
var img = document.getElementById("screen");
var url = unescape(decodeURIComponent(window.urlParams.screenshot));
img.src = url;
if ( typeof(window.urlParams.width) !== "undefined" ) {
img.width = window.urlParams.width;
img.height = window.urlParams.height;
}
</script>
It might make sense to hide any margins on elements in your screensaver with some CSS like this:
<style>
* {
padding: 0;
margin: 0;
}
</style>