Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can I put a Raphael.js canvas over an IMG element? What should I do make this layout work?

share|improve this question

1 Answer

up vote 15 down vote accepted

Simply position the Raphaƫl canvas over the top of the image element using normal CSS techniques:

#wrapper {
    position: relative;
    padding: 0;
    outline: 1px solid #999;
}
#wrapper img {
    position: absolute;
    top: 0;
    left: 0;
}
#canvas {
    position: absolute;
    top: 0;
    left: 0;
}

Then nest your elements like this:

<div id="wrapper">
    <img src="myimage.jpg">
    <div id="canvas">  
    </div>
</div>

Here's a full example.

share|improve this answer
unfortunately it seems that rendering it over the the of HTML makes it impossible to interact with the things below. I dropped in jQuery and removed the image and added text - the text under the svn is not selectable... img339.imageshack.us/img339/8051/pictureqy.png – cwd Oct 25 '12 at 4:09
1  
@cwd See pointer-events: none – robertc Oct 25 '12 at 8:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.