Du bist nicht angemeldet.

  • Anmelden
  • Registrieren

xgamer

Anfänger

Beiträge: 20

1

25.06.2005, 19:23

In die Homepage zoomen

Wenn ihr in eure Homepage zoomen wollt, fügt einfach folgengenden Code in den <Body> ein:

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
 <title>Pagezoom</title>
</head>
<body>
<p align="center">Zoom-Faktor:<br>
<input type="radio" name="z" onclick="document.body.style.zoom=1.0;this.blur();">100%<br>
<input type="radio" name="z" onclick="document.body.style.zoom=1.5;this.blur();">150%<br>
<input type="radio" name="z" onclick="document.body.style.zoom=2.0;this.blur();">200%<br>
<input type="radio" name="z" onclick="document.body.style.zoom=5.0;this.blur();">500%<br>
<input type="radio" name="z" onclick="document.body.style.zoom=10.0;this.blur();">1000%<br>
<input type="radio" name="z" onclick="document.body.style.zoom=15.0;this.blur();">1500%
<br>
<input type="radio" name="z" onclick="document.body.style.zoom=50.0;this.blur();">5000%
</p>
</body>
</html>

Thema bewerten