Comments in my javascripts 4
With the help of some good people from this community I've (or they) made 6 javascripts for me.
I'm in an emergency situation now I have to comment those codes.
I could have done it by myself but.....I can't.....
So if someone can help me please fell free!!!!
And here comes the 4th one!
<html>
<head>
<link href="css.css" rel="stylesheet">
<script language="Javascript1.2">
var objRef, steg=6; position=10
function Init() {
if (document.layers)
objRef = document.layers.bild;
else
objRef = document.all.bild.style;
setInterval("Flytta()",80);
}
function Flytta() {
if (position>900)
steg=-6;
else if (position<10)
steg=6;
position+=steg;
objRef.left = position;
}
</script>
<Style type="text/css">
#bild{
position:absolute;
left:10px;
top:100px;
}
</style>
</head>
<body onLoad="Init()">
<div class="back"><a href="links.html">Tillbaka</a></div>
<div id="bild">
<img src="moose.gif">
Christina/Sara
</div>
</body>
</html>
A big thanxs to all of you who helped me a lot!!!!
Thanxs!!!!!!
|