Wall Paper Selector

Description:

ページの壁紙をプルダウンメニューから選択できます。

Demo:

デモを見る。

Source:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>


<script language="JavaScript" type="text/javascript">
<!--

function wallpaperSelector(obj) {
 if(!document.body) { return; }
 var img = obj.options[obj.selectedIndex].value;
 document.body.background = img;
}

//-->
</script>


</head>

<body>


<!-- 壁紙選択用のフォーム -->
<form method="post">
<select onChange="wallpaperSelector(this)">
 <option value="">--- 壁紙を選択 ---
 <option value="../_image/card/1.gif">1
 <option value="../_image/card/2.gif">2
 <option value="../_image/card/3.gif">3
</select>
</form>


</body>
</html>

Advice:

Arrangement:

Browser:

Internet Explorer4.0以上
Netscape Navigator6.0以上