Consider a single button.

At one extreme, we have a black OpenGL window, with:

  • outline (in white) of a rectangle
  • bitmap remdered font inside of it, saying "Ok"

At the other extreme, we have Mac OS X, a button that is:

  • well rounded
  • has some gradient showing light effects on it
  • nice antialiased "OK"
  • soft shadow of some sort

These two UIs present very very different user experiences. The former says "This is from the 80s" the latter says "this is professional".

This is something I do not understand well as a programmer (and don't know where to learn about this).

Does anyone know of a good technical resource for this? [I'd prefer things that draws upon psychology / perception literature to say why to do something rather than design books that just says "use color XYZ with a gradient of blah"]

link|improve this question

79% accept rate
1  
Unless you're artistic, you're liable not to get a really great grasp of this. You can do ok, and a lot of people do, but there is little substitute for a good graphic designer. It's much easier to recognise a professional looking UI than it is to sit down and design one from scratch yourself. – Paddy Mar 2 '10 at 11:39
Is there no theory of this? I'd love something like "this is how humans preceive stuff", therefore we should optimize for this function; optimizing for this function, we get buttons that look like this. – anon Mar 2 '10 at 11:41
3  
It's a matter of fashion, too. In five years, we'll be puking all over these currently fashionable OS X buttons. (And "web 2.0" style, as well.) – Thomas Mar 2 '10 at 11:42
1  
@anon - I guess there are theories, but I don't think they will be as hard and fast as other programming theories. As mentioned, it will depend on fashion and also on what your audience will be. – Paddy Mar 2 '10 at 12:20
1  
Suggested reading: ignorethecode.net/blog/2010/01/21/realism_in_ui_design – Josh Lee Mar 3 '10 at 7:01
show 5 more comments
feedback

5 Answers

Here is something on it. http://www.alistapart.com/articles/indefenseofeyecandy

You can check this link out to answer the part of your query in the comment. It has lots of references to samples and helpful links. http://www.usernomics.com/user-interface-design.html

The perception and psychology part of designing the UI does not come as any rule or steps, as we all know. It gets developed over time. Making your application user friendly and pleasing that part of the magic or deal gets added on from experience\survey and also you can include layman testing. I do it many times. Ask somebody who does not belong to IT field part to checkout your application. If it's an eCommerce app then my mother is my candidate for me. She comes of with cut and blank criticism on user friendliness. She wins a shopping trip with my card. She herself has a list of sites under her favorites and with solid reasons why it's been picked out.

Also thinking out of the box. You will get a solution when solve it within the box. But you will get a better solution when you think out of it.

Another useful thing is be a good learner and observer. Note something nice and useful when you visit sites or use other applications. You might not even notice it. It might be something very small or trivial but it makes a lot of difference when it's used in the right place.

link|improve this answer
awesome answer. +10 (if I could). That post directly answers the question. – Bryan Oakley Mar 2 '10 at 12:01
great, how do I actually create that shinny search button? – anon Mar 2 '10 at 14:53
@anon: that question is too deep to answer in a tiny comment box. Google is a wonderful resource for answering questions like that. – Bryan Oakley Mar 2 '10 at 17:02
@Bryan -- I don't mean "create a button" in the sense of a QT/MacOSX tutorial; I mean what equations gives me rise to the lighting/shading that creates that shinny like button? – anon Mar 2 '10 at 20:44
@anon: I realize that. Google it. There are plenty of tutorials for using photoshop to create such buttons, and there are websites where you just type in text and it gives you back an image. And there are desktop apps that do the same thing. There's nothing magic about it. – Bryan Oakley Mar 3 '10 at 0:29
show 1 more comment
feedback

You will want to read up on Human User Interface guidelines HIG and Usability:

Apple's Human Interface Guidelines

Windows User Experience Guidelines

Platform agnostic guidelines

Amazon has plenty of books on the HIG subject, but I'd also recommend books based on usability. Steve Krug's "Don't make me think" is a great book (mainly tailored for web usability) etc.

link|improve this answer
1  
+1 to counter the drive-by downvote. Useful links. – MagicAndi Mar 2 '10 at 11:37
None of those resources have much to say on this subject. They are more concerned with button placement, choice of widgets, colors, etc. They don't address how or why or whether "professional" looking buttons are more effective than their plain counterpart. – Bryan Oakley Mar 2 '10 at 11:38
Useful, but precisely not what Anon meant ;) – Bastiaan Linders Mar 2 '10 at 11:39
@Bastiaan Linders: how is this answer useful to this question? It's useful for some other question, but not this one. – Bryan Oakley Mar 2 '10 at 11:40
1  
I would argue that a slick professional interface is the result of a well designed layout/form that takes usability and human interaction into consideration. These links also discuss things like why certain shading/gradients create a 3D look and thus better "indicate" a button is clickable. – scunliffe Mar 2 '10 at 11:44
show 4 more comments
feedback

alt text

A classic: The Design of Everyday Things

Pretty quick read, discussed some of the psychology behind using and understanding human interfaces. It's a bit dated and doesn't directly focus on programming GUIs but I would start here.

link|improve this answer
feedback

I'd start with Vitruvius' firmness, commodity, and delight. Also Gibson's affordances. Also, many HCI researchers have applied activity theory, with mixed results. Norman's DOET is a good start, but I think it covers only the first 2 of Vitruvius' triad - you're asking about the delight. Might also look at McCloud's Understanding Comics.

link|improve this answer
feedback

The Opera web standards curriculum has a very good section on aesthetic aspects, especially regarding color usage. I think it's very useful reading not only for web development, but all application design.

There is also a color scheme designer website, which allows you to play around with some of the color theory aspects. Definitely worth a visit.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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