






















1
<script language="JavaScript" type="text/JavaScript">
2
//改变图片大小
3
function resizepic(thispic)
4

{
5
if(thispic.width>700)
{thispic.height=thispic.height*700/thispic.width;thispic.width=700;}
6
}
7
//无级缩放图片大小
8
function bbimg(o)
9

{
10
var zoom=parseInt(o.style.zoom, 10)||100;
11
zoom+=event.wheelDelta/12;
12
if (zoom>0) o.style.zoom=zoom+'%';
13
return false;
14
}
15
//双击鼠标滚动屏幕的代码
16
var currentpos,timer;
17
function initialize()
18

{
19
timer=setInterval ("scrollwindow ()",30);
20
}
21
function sc()
22

{
23
clearInterval(timer);
24
}
25
function scrollwindow()
26

{
27
currentpos=document.body.scrollTop;
28
window.scroll(0,++currentpos);
29
if (currentpos !=document.body.scrollTop)
30
sc();
31
}
32
document.onmousedown=sc
33
document.ondblclick=initialize
34
35
//更改字体大小
36
var status0='';
37
var curfontsize=10;
38
var curlineheight=18;
39
function fontZoomA()
{
40
if(curfontsize>8)
{
41
document.getElementById('fontzoom').style.fontSize=(--curfontsize)+'pt';
42
document.getElementById('fontzoom').style.lineHeight=(--curlineheight)+'pt';
43
}
44
}
45
function fontZoomB()
{
46
if(curfontsize<64)
{
47
document.getElementById('fontzoom').style.fontSize=(++curfontsize)+'pt';
48
document.getElementById('fontzoom').style.lineHeight=(++curlineheight)+'pt';
49
}
50
}
51
</script>

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



47

48

49

50

51
