Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I would like to create an overlay layer that pops up if a user clicks a 'help' link that displays help tips (most likely a .png image) pointing out elements of the website.

I've seen this done on other websites (although I can't currently find one) whereby there is a semi-transparent overlay over the entire page whereby help tips are shown. I would then like the overlay to disappear if the user clicks or click on a 'close' button.

I understand that is a lot to ask, but if anyone could point me in the right direction, or to an online tutorial, etc. I'd REALLY appreciate it :)

Here is an example of the effect I want to create on my website: jquery overlay website help tips

share|improve this question

3 Answers

up vote 4 down vote accepted

Take a look at Impromptu plugin

http://trentrichardson.com/Impromptu/

share|improve this answer
I like the 'tour' feature at the bottom, but it doesn't seem to give you the markup needed to implement? (or am i missing something?) – Adam D May 17 '12 at 16:28
Impromptu Tour is exactly what I wanted. Now I'm having another issue though... see here: stackoverflow.com/questions/10653471/… – Adam D May 18 '12 at 15:36

Sounds like you are looking for something like Colorbox

share|improve this answer

First you'll have to learn how to create an overlay. That's easily done with a bit of elementary CSS.

The stuff that show the help stuff (your PNG images) are going to be contained inside the overlay element (which is most probably a div). You're going to have to position them around, and you can choose to do that with pure CSS, or use something like jQuery UI's Position helper to help you out.

Lastly, you're going to need a bit of Javascript / jQuery to kick off the toggling of the overlay. You want to read up on events in jQuery. Most probably, you're going to be attaching on click.

share|improve this answer

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.