レイヤータグって...どう使うの!?

[上に] [前に] [次に]
匿名希望 [E-Mail] 1997/08/13(水) 13:21:21
NS Communicator Ver4.01 のレイヤータグはどの様にしてつかうのでようか!?

とほほ 1997/08/13(水) 18:44:58
レイヤーをアニメのセル画の様に扱うことができます。
こんなドキュメントを試してみてちょ。
<HTML>
<HEAD>
<SCRIPT>
function func() {
    if (navigator.appName != "Netscape") return;
    if (navigator.appVersion.substring(0, 3) != "4.0") return;
    x += (Math.round(Math.random() * 10) - 5);
    y += (Math.round(Math.random() * 10) - 5);
    x = Math.max(0, Math.min(x, 400));
    y = Math.max(0, Math.min(y, 400));
    document.layers["layers1"].moveTo(x, y);
    document.layers["layers1"].visibility = "show";
    setTimeout("func()", 100);
}
</SCRIPT>
</HEAD>
<BODY BGCOLOR=white onClick="x=200;y=200;func();">
<LAYER NAME="layer1" VISIBILITY=hide>
  <HTML>
  <BODY>
  <A HREF="xxx.html">Click Me!!</A>
  </BODY>
  </HTML>
</LAYER>
</BODY>
</HTML>

[上に] [前に] [次に]