Themuppeteer
Programmer
hello,
I want to make a class image, and when I make an instance of it, it draws an image on certain coordinates x and y. The image ,x and y value are given as arguments.
This is what I have,but I'm not there yet and I'm stuck.
The images are drawn,but when I go over them with my
mouse,I want them to jump to the left 10 pixels. I cant get this to work. Can NE1 help me pleazze ?
<html>
<head>
<script language="JavaScript">
<!--
function myImage(x,y,image)
{
/*function paint(){
alert("test"
; //doesnt work either
}*/
this.x=x;
this.y=y;
this.left=x;this.top=y;
this.p="<div id='gif' style='position:absolute;'> <a href='#' OnMouseOver='this.left+=10;'><img
src='"+image+"'></a></div>";
document.write(this.p);
}
//-->
</script>
</head>
<script>
mm=new myImage(100,100,"monkey.gif"
;
b=new myImage(100,200,"foto1.gif"
;
</script>
</html> Greetz,
The Muppeteer.
themuppeteer@hotmail.com
Don't eat yellow snow...
I want to make a class image, and when I make an instance of it, it draws an image on certain coordinates x and y. The image ,x and y value are given as arguments.
This is what I have,but I'm not there yet and I'm stuck.
The images are drawn,but when I go over them with my
mouse,I want them to jump to the left 10 pixels. I cant get this to work. Can NE1 help me pleazze ?
<html>
<head>
<script language="JavaScript">
<!--
function myImage(x,y,image)
{
/*function paint(){
alert("test"
}*/
this.x=x;
this.y=y;
this.left=x;this.top=y;
this.p="<div id='gif' style='position:absolute;'> <a href='#' OnMouseOver='this.left+=10;'><img
src='"+image+"'></a></div>";
document.write(this.p);
}
//-->
</script>
</head>
<script>
mm=new myImage(100,100,"monkey.gif"
b=new myImage(100,200,"foto1.gif"
</script>
</html> Greetz,
The Muppeteer.
themuppeteer@hotmail.com
Don't eat yellow snow...