While designing for web, when should I use a light-box and when should I direct the user to a new page? For example, if the user clicks the "contact" link, should I open a small form in a light-box or send them to new page on the site?
|
|
Some broad guidelines for lightboxes:
|
||||
|
|
|
I like to follow the rule that lightboxes should be used if after the task is completed the user will want to get back to the page they were viewing previously. Lightboxes keep the user in the context of what they were viewing and users expect to be returned to that page once their task is complete. I think the context of the contact link is important when thinking about this question and could alter the answer.
Hope this helps but in this situation I always find that the answer "it depends" most often fits. Consider the context in which users will click the contact us button and whether they will want to return to their previous task and that should give you your answer. |
|||||
|
|
Quick answer: It depends. Adding to rsparis's answer: Although it's not a 'significant' number, quite a few computers don't have javascript enabled. Those computers will not be able to see the lightbox. Therefore, if what you are going to show is going to be key information (like a contact form), I would guarantee it works for every user possible. I (personally) like using lightboxes/tooltips for adding content. Depending on what's essential, important and not too relevant in your site, and also on how much js you are using already, think of it either as an add-on, or as a functional part of your structure. |
|||||
|
|
I use light boxes when there really just isn't enough content for a new page, like a contact form or subscribing to a news letter, and when I don't need that content on the page |
|||
|
|