vote up 1 vote down star

I am sure all of you have observed the cohesive design of this site. My question is about some of the cool info-boxes...that appear on various events. Like when someone with lower reputation tries to down-vote OR the long box that appears just below the browser address bar when I have got response to one of my questions.

These are basically JS generated DIV elements...but do any one of you know a good library/ set of controls that can be used to achieve these styling effects?

flag

30% accept rate
3  
Better move this to meta.stackoverflow.com :) – Chathuranga Chandrasekara Sep 6 at 5:12
7  
No, this is not a meta discussion, it's a UI design question, that happened to use SO as an example. – hasen j Sep 6 at 5:16
I don't know, but I, for one, would like SO more if it didn't. If I'm browsing, I want to just browse, thanks, and I'll check my messages later. At best, this is merely a slightly less awful use of push on the web than most. – Alec Sep 6 at 5:19
Its not meta - the OP just using an example site to demonstrate their requirements, it just happen to be the same site you are on right now ;-) . Here, I'll retag it to show you what I mean. – Guss Sep 6 at 5:21
2  
Many duplicates: stackoverflow.com/search?q=stackoverflow%20[jquer… – wcoenen Sep 6 at 13:59
show 1 more comment

6 Answers

vote up 13 vote down

JQuery can do a lot of nice things

link|flag
Thats a generic library...I am looking for something pre-defined...with which I can hit the ground running. – Chouette Sep 6 at 5:14
7  
You can't get much simpler than jQuery to be honest. $("body").append("<div class="notice">You did something!</div>"); – cvondrick Sep 6 at 5:18
vote up 3 vote down

JQuery is the obvious first answer :)

link|flag
1  
Welcome to the JQuery cult. Actually Glow (bbc.com/glow) is a much better answer as it offers methods for animation and UI control that JQuery does not, but both are not a good answer for the OP – Guss Sep 6 at 5:19
vote up 2 vote down

do any one of you know a good library/ set of controls that can be used to achieve these styling effects?

What styles are you talking about? Everything in SO is essentially a normal html box (div) with borders, margins, and padding, and other plain and simple css settings.

There's no fancy widget anywhere, at least not something that I can see.

In fact, it's quite ugly, but we programmers have no taste :)

We like it because it's simple and straight to the point, not because it looks fancy.

link|flag
Simple and straight to the point? I thought that was USENET! SO has big full-color avatars, arrows and stars and badges, ajax search and textboxes, and fancy text formatting, in addition to the fancy alerts asked about here. Or as pg once said, "It takes a surprising amount of work to make it look like the site has no design". – Alec Sep 7 at 16:37
@Alec: Yes, all this is awesome functionality, but there are no "styling effects". It's all very basic css stuff. color, background-color, font, border, padding, margin. e.g. red box with white text in it, wow, fancy widgets eh? – hasen j Sep 8 at 5:14
vote up 0 vote down

And yes I know the WZ library...which is pretty cool. But am looking for something more cohesive and closer in resemblance to stackOverflow styling.

http://www.walterzorn.com/

link|flag
vote up 0 vote down

As others have said, JQuery will do what you want... just use it to insert a div. If you want more widget-ey type things there's also JQuery UI.

link|flag
vote up 0 vote down

As eveyone said Jquery is there in Stackoverflow doing some animations :)

if you see in the view source ,You can find out ,how it is working

E.g:

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>

Few days back i had same doubt .I researched on it and got some of nice animations as like stackoverflow using Jquery.

link|flag

Your Answer

Get an OpenID
or

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