Scrolling hyperlink

  • Thread starter Thread starter cdb
  • Start date Start date
C

cdb

Is there anyway to create a scrolling hyperlink that will take you to several
different pages?

I've managed to add a marquee and turn this into a hyprelink, but I can only
get it to point at one destination.
 
cdb said:
Is there anyway to create a scrolling hyperlink that will take you to
several
different pages?

I've managed to add a marquee and turn this into a hyprelink, but I can
only
get it to point at one destination.

Will the viewer have enough time to read it and link to one of many sites
before it scrolls out of view?

If you think so, then try making the text
Go to<a href=''Site1.html">Site 1</a><br />Go to<a href=''Site2.html">Site
2</a> etc

The example on this site
http://www.w3schools.com/DHTML/tryit.asp?filename=trydhtml_scrolltext
works if you change the contents of the <body> to

<span id="display"><br /><br /><br /><br /><br /><br /><br />
Hello Developers, this script makes a scrolling text. <br /><a
href="http://www.w3schools.com">Visit W3Schools.com</a>
</span>
 
Excellent. Many thanks.

Trevor Lawrence said:
Will the viewer have enough time to read it and link to one of many sites
before it scrolls out of view?

If you think so, then try making the text
Go to<a href=''Site1.html">Site 1</a><br />Go to<a href=''Site2.html">Site
2</a> etc

The example on this site
http://www.w3schools.com/DHTML/tryit.asp?filename=trydhtml_scrolltext
works if you change the contents of the <body> to

<span id="display"><br /><br /><br /><br /><br /><br /><br />
Hello Developers, this script makes a scrolling text. <br /><a
href="http://www.w3schools.com">Visit W3Schools.com</a>
</span>
 
Back
Top