schustec: Abwechselnd nach oben und unten scrollen lassen

Beitrag lesen

Habe jetzt selbst ne Lösung gefunden:

var y_vorher = 0

function AutomatischScrollen()
{
  window.scrollBy(0,1);
  AutomatischScrollen_down();
}

function AutomatischScrollen_down()
{
    var y = 0;
    if (document.body && document.body.scrollTop) {
    y = document.body.scrollTop;
  }
  if (y > y_vorher) {

y_vorher = y
    window.scrollBy(0,1);
    Scrollen_down();
  }
  else {

setTimeout("AutomatischScrollen_up()", 2000);
  }

}
function Scrollen_down()
{
    GescrollteZeit = window.setTimeout("AutomatischScrollen_down()", 40);
}

function AutomatischScrollen_up()
{
    var y = 0;
    if (document.body && document.body.scrollTop) {
    y = document.body.scrollTop;
  }
  if (y > 0) {

window.scrollBy(0,-1);
    Scrollen_up();
  }
  else {

y_vorher = 0;
    setTimeout("AutomatischScrollen()", 2000);
  }
}

function Scrollen_up()
{
    GescrollteZeit = window.setTimeout("AutomatischScrollen_up()", 40);
}