Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
Das Forumsniveau sinkt stetig.
function init_mousemove() {
if(document.layers) {
document.captureEvents(Event.MOUSEMOVE)
document.captureEvents(Event.KEYPRESS)
}
document.onmousemove = dpl_mouse_pos
}
function dpl_mouse_pos(e) {
var xPos = e? e.pageX : window.event.x
var yPos = e? e.pageY : window.event.y
if (document.all && !document.captureEvents) {
xPos += document[docEl].scrollLeft
yPos += document[docEl].scrollTop
}
mousepos = new Array(xPos,yPos)
if (document.layers)
routeEvent(e)
}