UI Design: Folding App

UI Design: Folding App

The time for a new post on UI Design has come and here it is, a fine example of a folding app design. This is a fresh idea for a cool app, which I’d love to see first hand. Check it out!

This UI piece is the idea of American designer Brett Withjack. It’s a mockup only for his portfolio, I’d definitely use it to check on news. It looks pretty nice with a mint design for sure. For more of Brett’s design ideas check out his portfolio at Behance. Also, let us know what do you think about his folding app idea. Cheers! 😉


UI Design: Folding App


UI Design: Folding App


UI Design: Folding App


UI Design: Folding App


UI Design: Folding App


UI Design: Folding App


UI Design: Folding App


UI Design: Folding App


UI Design: Folding App


UI Design: Folding App

Posted in Blog | Comments Off on UI Design: Folding App

Incredible voice control for the Web

thumbnailBrowsing the Web is usually an endless round of clicks, taps and scrolling.

That’s changed with Annyang, an incredibly simple JavaScript library that enables voice commands for web sites.

Maybe not the most user-friendly for brochure sites, it’s great for complex applications where giving the user a series of verbal shortcuts to different sections, such as ‘Open my account’ or ‘Save for later’, could potentially save a lot of frustration and visits to the site map.

Any browser that supports SpeechRecognition is supported and any browser that doesn’t is left unaffected.

A simple example would look something like this:

<script src='annyang.min.js'></script>
<script>
if(annyang)
{
        var commands = {
        'hello': function()
                {
                        console.log('world');
                }
        }
        annyang.init(commands);
        annyang.start();
}
</script>

Take a look at the demo. It may not be the most responsive input method, and you’ll feel a bit foolish on your morning commute; but the possibilities are tantalizing.

 

Have you used voice control for a web interface? What difficulties did you encounter? Let us know in the comments.

MenuMate: Mac Menus where you need them – only $1,99!
Incredible voice control for the Web

Source

    

Posted in Blog | Comments Off on Incredible voice control for the Web