leonie
01-20-2006, 12:57 AM
:confused: hoping some1 can help me with aligning my JS heading with images. im wanting pics on both sides of my heading.
thank you
leonie
this is my heading code:
<head>
<center>
<Style type = "text/css">
.big { color: violet;
font-family: technical;
font-size: 42pt;
font-weight: bold}
</style>
<script language = "JavaScript">
//Wave Text! by Spookdog (spookydog3@hotmail.com)
//Submitted to DynamicDrive.com
//For this script and more, visit http://www.dynamicdrive.com
<!--you can use this on your web page as long as the above stays in the script-->
var TimerID;
var updown = true;
var str = 1;
function start()
{
if (document.all)
TimerID = window.setInterval( "wave()", 50 );
}
function wave()
{
if ( str > 20 || str < 2 )
updown = !updown;
if ( updown )
str++;
else
str--;
wft.filters( "wave" ).phase = str * 20;
wft.filters( "wave" ).strength = str;
}
window.onload=start
</Script>
</head>
<body>
<div ID = "wft" Style = "width:600px; filter:wave(add=0, freq=4, light=0, phase=0, strength=5)" class = "big">
Welcome to the Dazzle Website</div>
</center>
</body>
thank you
leonie
this is my heading code:
<head>
<center>
<Style type = "text/css">
.big { color: violet;
font-family: technical;
font-size: 42pt;
font-weight: bold}
</style>
<script language = "JavaScript">
//Wave Text! by Spookdog (spookydog3@hotmail.com)
//Submitted to DynamicDrive.com
//For this script and more, visit http://www.dynamicdrive.com
<!--you can use this on your web page as long as the above stays in the script-->
var TimerID;
var updown = true;
var str = 1;
function start()
{
if (document.all)
TimerID = window.setInterval( "wave()", 50 );
}
function wave()
{
if ( str > 20 || str < 2 )
updown = !updown;
if ( updown )
str++;
else
str--;
wft.filters( "wave" ).phase = str * 20;
wft.filters( "wave" ).strength = str;
}
window.onload=start
</Script>
</head>
<body>
<div ID = "wft" Style = "width:600px; filter:wave(add=0, freq=4, light=0, phase=0, strength=5)" class = "big">
Welcome to the Dazzle Website</div>
</center>
</body>