JavaScript Tutorial/Window/scrollBy

Материал из Web эксперт
Перейти к: навигация, поиск

Scroll the window by using window.scrollBy

   <source lang="javascript">

<html> <head> <title>Window Scroller</title> <script language="javascript" type="text/javascript">

</script> </head> <body>

Window Scroller

<a href="javascript:scrollWin()">Scroll Window</a>

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
44
45
46

THE END

</body> </html></source>