Thread Horizontal mit Mausrad srollen? (6 answers)
Opened by Danwe at 2007-01-02 15:16

Danwe
 2007-01-02 16:19
#24966 #24966
User since
2006-06-09
76 Artikel
BenutzerIn
[default_avatar]
Ok, auch das ist gelöst:
http://www.quirksmode.org/viewport/compatibility.html#link3

hier gibts ein Script mit dem man für alle Browser die Position auslesen kann.
Das ganze funktioniert dann auch im IE problemlos:

Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
    var x,y;
if (self.pageYOffset) // all except Explorer
{
x = self.pageXOffset;
y = self.pageYOffset;
}
else if (document.documentElement && document.documentElement.scrollTop)
// Explorer 6 Strict
{
x = document.documentElement.scrollLeft;
y = document.documentElement.scrollTop;
}
else if (document.body) // all other Explorers
{
x = document.body.scrollLeft;
y = document.body.scrollTop;
}

View full thread Horizontal mit Mausrad srollen?