Nominated on

csswinner.com cssdesignawards.com
Thursday, May 23, 2013 - by

In this talk the presenters explore the arsenal of tools available to Android UI engineers that let you implement some of these important guidelines, including responsive design with multi-pane layouts, metrics and layout grids, and core navigation components.

Saturday, May 4, 2013 - by

  1. 5 UX lessons from Jim Carey

    Steve Tengler shares five user experience lessons he learned from the cinematic performances of Jim Carrey.

  2. Read more »

Thursday, April 25, 2013 - by

If there is an image with following dimensions:

width=480px, height=360px

However if its width is required to be scaled to 540px & height to be calcualted based on its width below can be used:

 Javascript |  copy code |? 
1
var oldWidth=480,newWidth=540,oldHeight=360,newHeight,ratio;
2
 
3
ratio=newWidth/oldWidth;
4
newHeight=oldHeight*ratio;
5
alert(newHeight);

Thursday, April 25, 2013 - by

This is a great video by Nicholas Zakas gives you simple tips on how to understand and maintain JavaScript code better. Read more »

Wednesday, April 24, 2013 - by

Join Jeff Gothelf for a hands-on webcast to learn how Lean UX aims to open up the user experience design process with a collaborative approach that involves the entire team. It’s a hypothesis-based design approach that tests design ideas early and often and, along the way, builds a shared understanding with our team mates that eliminates the dependencies on heavy documentation and challenging communications. Lean UX is a solution for the challenge of Agile and UX integration while it also works effectively in traditional waterfall and other hybrid environments. Read more »