View Single Post
  #1  
Unread 03-26-2010, 09:15 PM
JavaScriptBank JavaScriptBank is offline
Member
 
Join Date: Mar 2010
Posts: 160
Rep Power: 16
JavaScriptBank is on a distinguished road
Free JavaSccript codes

JavaScript codes for Web DEV

Vertical Marquee

Text scrolls from bottom to top, pauses, then scrolls up and out of view. A can be added, opening in a new window. Configuration is simple.... at


Demo:

How to setup

Step 1: Place CSS below in your HEAD section
CSS
Step 2: Place JavaScript below in your HEAD section
JavaScript
[code]<script language="javascript">
// Created by: Mike Hudson :: http://www.afrozeus.com

/*
To change the values in the setupLinks function below.
You will notice there are two arrays for each of Titles and
Links. Currently there are 3 items in each array, but you can easily
expand on that by adding to the array. For example, to add a 4th record,
you would simply include the following 2 lines at the end of setupLinks
function:

arrLinks[3] = "someURL.htm";
arrTitles[3] = "Some title";
*/
function setupLinks() {
arrLinks[0] = "http://forums.webdeveloper.com/forumdisplay.php?s=&forumid=3";
arrTitles[0] = "If you have any questions, be sure to visit our forums.";
arrLinks[1] = "http://javascript.internet.com/new/";
arrTitles[1] = "Don't miss anything
Reply With Quote