|
logo: When used in the body tag it adds an image to the page discription for bookmarks. Webtv users can see the image with the "Info" key and while viewing "Recents". It is also seen in saved Faviorites. An image of 60 pixels is recommended. Animated gifs will work too.
address: When used in the body tag it allows you to control the title of the page as it will appear in a bookmark and the info panel.
example:
<body logo="url_Of_Iage" address="Title/Info">
xspeed="n" yspeed="n": Where n can be positive or negative. Small numbers are best to avoid jerky movement. An example can be seen here using xspeed="-1" yspeed="1" in the body tag.
example:
<body bgColor="black" background="URL_of_Image" xspeed="-1" yspeed="1">
Transition:
With this body tag attribute, you can control how the page loads visually.
For Webtv
- wipedown
- wipeup
- wipeleft
- wiperight
- slidedown
- slideup
- slideleft
- slideright
|
- pushdown
- pushup
- pushleft
- pushright
- blackfade
- spinoutin
|
example: <body transition="wiperight">
Scrolling Page:
window.scrollBy(x,y)
This script will scroll a page with a distance set in pixels (x,y) and a time set in mili-seconds.
Try it here
novtilebg nohtilebg bgproperties=fixed
This set of tags will fix a background, allowing no scrolling. Using these body tags along with the scoll script will scroll the foreground on the fixed backgound image. View an example here
<BODY text="" link="" vlink="" alink="" bgcolor="black" background="url_of_image" novtilebg nohtilebg bgproperties="fixed">
|