August 1999
Intermediate to advanced
1488 pages
72h 53m
English
layer.moveBelow(layername)
The moveBelow() method of the Layer object is used to move a layer object below another specified layer. The function takes a single parameter, layername, representing the layer object that gets moved to the front.
Listing 7.335 shows how the moveBelow() method is used to move Layer2 below Layer1.
<html> <head> <title> Using the moveBelow method of the Layer object</title> </head> <body> <layer id="layer1" width=200 height=200 color= bgcolor="yellow" TOP=170 LEFT=150 VISIBILITY="show"> <center>Layer 1</center> </layer> <layer id="layer2" width=150 height=160 color= bgcolor="green" TOP=100 ... |
Read now
Unlock full access