Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Scrolling Text

Status
Not open for further replies.

BigCatMCS

Programmer
Apr 29, 2004
57
0
0
US
I have a scrolling text that is moving upwards. Actually, it's inside a <marquee> tag. I have three links that are scrolling up on a continuous basis. My question is, how do I get the marquee to stop scrolling for a few seconds when one link (or msg) scrolls into the box? I hope I'm making sense here. Below is the script:


<html>
<head><title>Scrolling Text</title>

<style type="text/css">

a:link {color: blue; text-decoration: none;}
a:visited {color: blue; text-decoration: none;}
a:active {color: blue; text-decoration: none;}
a:hover {color: red; text-decoration: underline;}

</style>

</head>
<body>
<H1 align="center">Scrolling Text</h1><hr>
<p>
<h3>Sites to look up:</h3>
<table>
<tr>
<td>
<a href=" </tr>
<tr>
<td><a href=" </tr>
<tr>
<td><a href=" </tr>
</table>

<div align="center">
<p>


<marquee bgColor="lightblue"
behavior="scroll"
direction="up"
scrollamount="1"
scrolldelay="100"
title="Scrolling down the river."
width="280"
height="50"
vspace="10">
<a href=" what's going on at IBM. </a>
<p><br>
<a href=" out the latest Honda web site. </a>
<p><br>
<a href=" a <b>question?</b> - we have an <b>answer!</b></a>
<p>
</marquee>
</div>
</body>
</html>
 
One more thing...Do you think this is beyond HTML and I might have to use JavaScript in order to pull this off?
 
Do you know that the marquee tag is something that only IE has, and doesn't work in any other browser? To do this so all browsers, you'd have to use some dynamic HTML and Javascript. You can find some good scrolling text scripts that are cross-browser compatible by searching Google.

Lee
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top