how can i get this to work
Code:
<html>
<head>
<script type="text/javascript">
function timedMsg()
{
var t=setTimeout("document.getElementById("b1").src = "/tiles/1.bmp")",500);
}
</script>
</head>
<body onload="timedMsg()"/>
what im trying to do is add a wait before changing a image,
(done a few times to create a drifting across the page look)
this is the prototype however ill further try to make it change other stuff about the image if this is not possible then i'd like to know a way to show/hide images with a wait inbetween them
Last edited by flatrat; 07-28-2009 at 02:20 AM..
|