lundi 24 juin 2013

daily tutorial photoshop for Six Revisions

Six Revisions
5 Usability Mistakes You Shouldn't Make
Jun 24th 2013, 10:00

Advertise here with BSA


5 Usability Mistakes You Shouldn't Make

No web designer sets out to create a terrible user experience.

And a terrible user experience usually isn’t just one thing — it’s dozens of tiny usability mistakes repeated all throughout the user interface that coalesce into one big, frustrating experience.

Let’s go over some usability mistakes that will frustrate your users.

1. Neglecting the Design of Blank Slates

The blank slate is what a screen looks like when a user hasn’t added any data yet, or when a user deletes all of the data related to that screen.

Let’s look at an example of a blank slate — FreshBook’s item estimates screen:

Blank slate example on FreshBooks

Notice how they have placed some simple elements in the blank slate that greatly enhances the usability of the screen. Namely:

  • Prominent description: At the top of the screen, there’s a distinct description of what the screen is
  • Actionable components: They have three pathways that allow users to take action and get started immediately
  • Blank slate indicator: To avoid confusion, there’s a statement saying that there are no items to display in the screen

Let’s take out these blank slate design components to see how powerful they are in terms of usability:

Imagine yourself as a first-time user presented with the screen above. You’re stuck. You don’t know what to do in this screen, and there are no pathways for you to learn what this screen is for (except creating a new item, but you won’t be sure what you’ll be creating and what the outcome will be).

What should you show on the blank slate?

At the bare minimum, you should have a blank slate indicator. "No invoices found", "No posts scheduled yet", "No photos to display", and so forth.

But, to me, the bare minimum of having a blank slate indicator is not good enough.

You want to teach new users how to use your software at every possible chance. And your perfect opportunity for teaching them are in these blank slates.

2. Unclear Button Labels

After you fill out a form to create an account on a web app, what should the button at the end of it say?

It should intuitively say "Create Account."

The label on actionable interface elements such as a web button should always tie back to what it will do for the user. These interface elements shouldn’t be unclear, questionable, ambiguous. They should be as obvious as possible.

Let me show you how subtle this idea is.

Look at the image below, it has an unclear button label.

You might be saying, "How is that unclear? It obviously states the purpose of the button: Contact Us."

It’s unclear because the result of pressing the button is not obvious.

  • Will it bring me to a new web page, such as a Contact Us page?
  • Will it reveal a modal window with a web form where I can type a message?
  • Will it open up a live chat widget where I can talk to a real person?

In fact, it’s none of the above.

What it does is it opens up your default email client:

What’s wrong about that? Here are some usability and user experience issues:

  • It’s confusing, I didn’t expect that my email client would open
  • What if I haven’t set my default email client to the one I use yet, and it opens up the operating system’s default email client (like MS Outlook)? That just wasted me some time.
  • What if I was using someone else’s computer, or I was at work using my company’s computer and it wasn’t set to my preferences yet?
  • What if I didn’t know websites could open my email client? It would be alarming if the email client just opened after clicking a button. It would make me fearful.

The resultant behavior of the button is not clear. If the button was labeled with "Send us an email" then having my email client open up wouldn’t be as surprising.

As a user, I shouldn’t have to take the time to look at the web page to derive the context of what a button will do for me. Why not just spell it out for me? If a button says "Save," I’m forced to look at the rest of the page to figure out what it is saving. But if it says "Save Post" then it’s immediately clear.

When setting the text of your web buttons, just ask this question to help you come up with good labels: What will the outcome be after pressing this button?

Here are a few examples of clear button labels:

MailChimp signup form

"Create new timer" button on Ballpark

GoGardless signup form

Coming up with good button labels is a simple and quick affair that some of us tend to neglect.

Having clear button labels greatly enhances usability.

3. Making Users Wait Without Giving Them Any Feedback

I hate to wait. Especially if it’s for an unknown amount of time.

If we were driving down a road together — and you, the driver of our car — pulled over to the side of the road and sat in silence for a minute without telling me why, I’d be annoyed at you.

But, if you say, "Hey, I need to pull over for a second because I’m sleepy and I need a short break," I would completely understand and wait patiently.

We make users wait all the time in our websites and web applications.

We make them wait whenever we’re updating a web page’s content asynchronously, whenever we’re opening a modal window with a very large high-res photo, or when our web server suddenly experiences reduced performance.

Making users wait is sometimes unavoidable.

But making users wait — without telling them why — is never unavoidable.

Any time you’re loading data, updating some content, or otherwise possibly making the user wait, tell them.

Display a progress bar or spinning animation along with some text of what’s happening.

Camera Plus uploading progress bar

Airbnb loading new content

If your site is experiencing uptime issues, tell your users what’s going on:

Store notice from Apple

People will be much more patient with you if they know what is going on.

4. Losing User Inputs in Web Forms

One time, I signed up for a web application. The first thing it wanted me to do after signing in was to fill out my profile information. That’s fine.

So I selected a photo, filled out one or two other input fields, and clicked a button to submit my info.

I was surprised when I was brought back to the same page, telling me that more fields were required.

But the real issue is that the photo I selected was gone — I needed to select the photo again and upload it.

This brings me to the cardinal rule of web form validation: Whatever you do, do not lose my data after validating my inputs.

Think of how frustrated your user would be if the form you’re asking her to fill out took a lot of time and, because she just forgot to fill out an input field, she now has to start over.

5. Clickable Areas Are Smaller Than They Appear to Be

It’s important to make sure that elements that appear to be clickable should be clickable.

Take a look at the image below to see what I mean:

A reasonable person would assume that the entire tab is clickable, but that’s not the case in the above example. Only the text is clickable. Not the tab. Yes, I know it is atrocious. What makes it worse is that it is a common mistake I see.

Why does this happen? It happens because most web designers create tabbed navigation menus using unordered lists (<ul>). So the markup looks like this:

  <ul>    <li><a href="">Link 1</a></li>    <li><a href="">Link 2</a></li>    <li><a href="">Link 3</a></li>  </ul>

That is good.

The mistake happens when they add all the style properties (particularly the padding property) to the <li> elements rather than to the <a> elements (where the style properties belong).

Since the <a> element is the only part that is clickable, we want it to take up as much space as possible.

This means that for this style of navigation nearly all the CSS should be applied to the nested <a> elements.

Also, when styling links (without backgrounds or borders) use padding rather than margin. Padding will give you space between elements as margin does, but will keep the clickable area nice and large.

Quick Fixes

Most of these are really simple things to fix, so if you are making any of these mistakes, go fix them now.

If you made it through this article unscathed, congratulations! Just make sure to keep looking at your user interfaces with a critical eye to catch any other usability issues.

Your users will thank you.

Related Content

About the Author

Nathan Barry is the author of Designing Web Applications, a complete guide to designing beautiful, easy-to-use web software. He also writes about design and business at NathanBarry.com.

Delicious Digg Evernote Facebook Google Bookmarks LinkedIn StumbleUpon Tumblr Twitter
You are receiving this email because you subscribed to this feed at blogtrottr.com.

If you no longer wish to receive these emails, you can unsubscribe from this feed, or manage all your subscriptions


0 comments:

Enregistrer un commentaire

 

© 2011 Photoshop TUTO - Designed by Mukund | ToS | Privacy Policy | Sitemap

About Us | Contact Us | Write For Us