Go to top function with slide effect

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
var goto_top_type = -1;
var goto_top_itv = 0;
 
function goto_top_timer()
{
  var y = goto_top_type == 1 ? document.documentElement.scrollTop : document.body.scrollTop;
  var moveby = 15;
 
  y -= Math.ceil(y * moveby / 100);
  if (y < 0) {
    y = 0;
  }
 
  if (goto_top_type == 1) {
    document.documentElement.scrollTop = y;
  }
  else {
    document.body.scrollTop = y;
  }
 
  if (y == 0) {
    clearInterval(goto_top_itv);
    goto_top_itv = 0;
  }
}
 
function goto_top()
{
  if (goto_top_itv == 0) {
    if (document.documentElement && document.documentElement.scrollTop) {
      goto_top_type = 1;
    }
    else if (document.body && document.body.scrollTop) {
      goto_top_type = 2;
    }
    else {
      goto_top_type = 0;
    }
    if (goto_top_type > 0) {
      goto_top_itv = setInterval('goto_top_timer()', 50);
    }
  }
}
This entry was posted in javascript and tagged , , , . Bookmark the permalink.

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> <pre lang="" line="" escaped="" highlight="">