PDA

View Full Version : Flashing link


olivier78
08-20-2002, 04:20 AM
Hi all,

Can someone tell me the HTML code for flashing text? I would like to put a link on my site, but I would like this link to flash, using simply two colours, is this possible?

Thank you :thumbsup:

x_goose_x
08-20-2002, 04:58 AM
http://www.dynamicdrive.com/dynamicindex5/flashlink.htm

Mr J
08-20-2002, 08:01 PM
<script language="JavaScript1.2">
<!--
function flash(){
if (document.all.flashme.style.color =="blue"){
document.all.flashme.style.color ="gold"
}
else{
document.all.flashme.style.color ="blue" }
}
setInterval("flash()", 1000)
//-->
</script>


<a id="flashme" href="#null"><b>CLICK</b></a>