Rapid Prototyping With J Query

48
RAPID PROTOTYPING with jQuery
  • date post

    21-Oct-2014
  • Category

    Technology

  • view

    5.597
  • download

    1

description

Paul Bakaus' presentation on using jQuery UI to create web application prototypes.

Transcript of Rapid Prototyping With J Query

Page 1: Rapid Prototyping With J Query

RAPID PROTOTYPINGwith jQuery

Page 2: Rapid Prototyping With J Query

PROTOTYPING

Page 3: Rapid Prototyping With J Query

WHAT IS A PROTOTYPE?

A prototype is an original type, form, or instance of something serving as a typical example, basis, or standard for other things of the same category.

Page 4: Rapid Prototyping With J Query

“An Experience Prototype is any kind of representation, in any medium, that is designed to understand, explore or communicate what it might be like to engage with

the product, space or system we are designing.”

Jane Fulton Suri

Page 5: Rapid Prototyping With J Query

WHAT IS RAPID PROTOTYPING?

• Implementing some product functionality as soon as possible

• Not worrying about any details or production issues

• Keeping up an illusion!

Page 6: Rapid Prototyping With J Query

Rapid prototypers are the illusionists and magicians of the

web

Page 7: Rapid Prototyping With J Query

WHY?

Page 8: Rapid Prototyping With J Query

WHY?

• Engineering the final design can take a long time

• Slow feedback loop for each design interaction

• Communication problems between design and engineering

Page 9: Rapid Prototyping With J Query

WHY?

• Exploration

• Validating it works

• Communication

Page 10: Rapid Prototyping With J Query
Page 11: Rapid Prototyping With J Query

DIFFERENT PROTOTYPES

• Wireframes = Walk through prototypes

• Interactive prototypes

Page 12: Rapid Prototyping With J Query

WHAT IS A PROTOTYPE FOR US?

• Interactive click dummy

• Modelled after wireframes and/or concept layouts

• Usually targeted at one audience, on one platform

Page 13: Rapid Prototyping With J Query

A Prototype doesn’t need to validate!

Page 14: Rapid Prototyping With J Query

NO CROSS-BROWSER

MESS!

Page 15: Rapid Prototyping With J Query

Semantics?

Who needs semantics!

SEO?

Who cares, damn it?

Structure, logic...!

LOL!

Page 16: Rapid Prototyping With J Query

REQUIREMENTS OF A PROTOTYPE

Page 17: Rapid Prototyping With J Query

REQUIREMENTS OF A PROTOTYPE

Layout

Behavior

Data

Page 18: Rapid Prototyping With J Query

LAYOUT

• Use CSS Frameworks!

• Copy and Paste!

• Use WYSIWYG Editors!

Just get the damn job done!

Page 19: Rapid Prototyping With J Query

CSS FRAMEWORKS?

• Hides complexity, like any other framework

• Provides templates for grids, columns and more

• Normalizes across browsers

Page 20: Rapid Prototyping With J Query

SOME TECHNIQUES

• If the floats don’t work, simply position everything

• Use a CSS Framework that comes with columns or a grid

• Utilize all kinds of specific browser technology

Page 21: Rapid Prototyping With J Query

BEHAVIOR

• Brings life into the prototype

• Describe interactions a user can perform

• Clicks

• Hover

• Drags

• ..etc

Page 22: Rapid Prototyping With J Query

CSS

• Use CSS whenever possible

• Use it to simulate hover events: a:hover {}

• Use content injection through CSS

• Switch class names in JavaScript, not styles

Page 23: Rapid Prototyping With J Query

DATA

• Use jQuery’s ajax functions to quickly inject content

• JSONP is your friend!

• $(‘div’).load(‘some.url#content’)

Page 24: Rapid Prototyping With J Query

USE PUBLIC API’S

• YQL

• Google API’s (Maps, Search, Docs, etc)

• Flickr

Page 25: Rapid Prototyping With J Query

THE ILLUSION OF SPEED

Page 26: Rapid Prototyping With J Query

A PROTOTYPE DOESN’T HAVE TO BE FAST.

Page 27: Rapid Prototyping With J Query

IT ONLY HAS TO FEEL FAST.

Page 28: Rapid Prototyping With J Query

PERCEIVED RESPONSIVENESS

• Slow down your interactions

• Use animations and effects to hide a loading process

• Slow interaction makes people understand your prototype!

• Shows the state change

• Shows relationships between elements

• Focusses attention

Page 29: Rapid Prototyping With J Query

TOOLS

Page 30: Rapid Prototyping With J Query

THEMEROLLER

Page 31: Rapid Prototyping With J Query

THEMEROLLER

• Design custom themes

• 100% jQuery UI CSS Framework compatible

• Fun and intuitive UI (No coding!)

• png8 with alpha transparency

• Theme Gallery

Page 32: Rapid Prototyping With J Query

JQUERY UI

Page 33: Rapid Prototyping With J Query
Page 34: Rapid Prototyping With J Query

JQUERY UI CSS FRAMEWORK

Page 35: Rapid Prototyping With J Query

THE CSS FRAMEWORK

• Semantic + generic classes instead of per-plugin

• Seperation of design and layout

• Support for CSS Sprites + CSS3 corner radius

• Modular and extensible

Page 36: Rapid Prototyping With J Query

PRETTY NEAT BUT I NEED MY OWN STYLES ANYWAY

Page 37: Rapid Prototyping With J Query

More power!

Page 38: Rapid Prototyping With J Query

IT‘S NOT EXCLUSIVE.

• Uses em‘s for all units

• Scales background images

• All documented

• Comes with testing & debugging tools

Page 39: Rapid Prototyping With J Query

WEBKIT

Page 40: Rapid Prototyping With J Query
Page 41: Rapid Prototyping With J Query

CSS TRANSFORMS

• Webkit/Gecko (Safari 3+, iPhone, Android, Air, FF 3.5+)

• 2D transformations on HTML elements

• Yes, all kinds of 2d transformations: Rotating, Scaling, Skewing

Page 42: Rapid Prototyping With J Query

3D CSS TRANSFORMS!

Page 43: Rapid Prototyping With J Query

...MUCH MORE

• CSS Gradients

• CSS Reflections

• text shadow

• box shadow

• CSS Animations

• CSS Transitions

Page 44: Rapid Prototyping With J Query

FIREBUG

Page 45: Rapid Prototyping With J Query

FIREBUG

• Quickly edit markup

• Edit CSS

• Manipulate JavaScript

The save button is missing!

Page 46: Rapid Prototyping With J Query

GREASEMONKEY

Page 48: Rapid Prototyping With J Query

THANK YOU FOR YOUR ATTENTION.

http://paulbakaus.com