rotating pulldown menu




JavaScript Source Code 3000: Messages: Rotating Pulldown Menu






























Rotating Pulldown Menu







Rotates site messages in a pulldown menu every few seconds. A good way to conserve screen space and even allows the user to simply click the pulldown menu to view all the messages at once. Cool!












You can lead a horse to water but cannot make it drink.
Time flies like an arrow but fruit flies like a banana.
Call me anything you like but don't call me late for dinner.
I don't know what WW3 will be like but WW4 will be of sticks and stones.








JavaScript Source Code 3000: Messages: Rotating Pulldown Menu
Simply click inside the window below, use your cursor to highlight the script, and copy (type Control-c or Apple-c) the script into a new file in your text editor (such as Note Pad or Simple Text) and save (Control-s or Apple-s). The script is yours!!!





    





<!-- ONE STEP TO INSTALL ROTATING PULLDOWN MENU:

1. Copy the coding into the BODY of your HTML document -->

<!-- STEP ONE: Paste this code into the BODY of your HTML document -->

<BODY>

<!-- Original: Dion (yobo42@hotmail.com) -->
<!-- Web Site: http://www.iinet.net.au/~biab/ -->

<! >
<! >

<form name=menuform>
<select size=1 name="msg">
<option>You can lead a horse to water but cannot make it drink.
<option>Time flies like an arrow but fruit flies like a banana.
<option>Call me anything you like but don't call me late for dinner.
<option>I don't know what WW3 will be like but WW4 will be of sticks and stones.
</select></form>
<script language="javascript">
<!-- Begin
function rotate() {
menu = document.menuform.msg;
chosen = menu.selectedIndex;
menu.selectedIndex= (chosen == (menu.length-1)) ? 0 : chosen + 1;
setTimeout("rotate()",5000);
}
rotate();
// End -->
</script>



<!-- Script Size: 1.05 KB -->










Wyszukiwarka

Podobne podstrony:
pu srvc menu nl
menu cwiczenia14
menu
menu
menu
l menu
menu
menu (67)
Menu 3
181 menu (6)
184 menu (2)
265 menu
java awt Menu

więcej podobnych podstron