Superimposing one image on anouther

A

ampeloso

Hello,
Id like to superimpose a small circle on an image using Javascript and
the Dom.(as a Mouseover)
Any quick tutorials and/or examples
Its very appreciated.
Thanks
Mike
 
L

-Lost

Hello,
Id like to superimpose a small circle on an image using Javascript and
the Dom.(as a Mouseover)
Any quick tutorials and/or examples
Its very appreciated.
Thanks

Sounds like a job for DHTML. That is, CSS and JavaScript. To be honest, that could be
done with :hover in CSS (remember Internet Explorer only likes :hover on links).

<a href="">
<img src="" />
<span>superimposed</span>
</a>

a span { display: none; }
a:hover span
{
display: block;
position: absolute;
top: 100px; // or whatever positions your "superimposed" layer better
left: 100px; // or same as above
}

For further CSS assistance you can try this group:
comp.infosystems.www.authoring.stylesheets

If you need further JavaScript assistance, post back.

-Lost
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,774
Messages
2,569,598
Members
45,160
Latest member
CollinStri
Top