I would like to add a popup message like the one that appears on stackoverflow when I am not logged in and I try to use voting buttons.
What is the best method for achieving that? Is it done using a jquery library?
|
I would like to add a popup message like the one that appears on stackoverflow when I am not logged in and I try to use voting buttons. What is the best method for achieving that? Is it done using a jquery library? | |||||||||
feedback
|
|
EDIT: The code below shows how to replicate the bars that show at the top of the screen when you get a new badge, first come to the site, etc. For the hovering dialogs that you get when you try to comment too fast, vote for your own question, etc, check out this question where I show how to do this or just go straight to the example. Here's how Stackoverflow does it: This is the markup, initially hidden so we can fade it in:
Here are the styles applied:
And this is javascript (using jQuery):
And voila. Depending on your page setup you might also want to edit the body margin-top on display. | |||||||||||||||||
feedback
|
|
Also checkout jQuery UI Dialog | |||
|
feedback
|
|
Using the ModalPopup in the AJAX control toolkit is another way you can get this effect. | |||
feedback
|
|
Here's what I found from viewing the StackOverflow source. Hopefully saves some time for someone. The showNotification function is used for all those popup messages.
css
It's cool how they use the length of the message to set the fading timeout. I didn't realize all the (non-fading style) messages actually fade out after 30 seconds. | ||||
|
feedback
|
|
There is similar question. You might want to check that as well. | |||
|
feedback
|
|
As a curious developer, I would view the source here and see how it works and then adapt it to my project. This is the best way to learn. | |||||||
feedback
|
|
Dojo has an UpgradeBar that does this: http://trac.dojotoolkit.org/browser/branches/1.6/dojox/widget/UpgradeBar.js http://trac.dojotoolkit.org/browser/branches/1.6/dojox/widget/UpgradeBar | |||
|
feedback
|