Archive

Archive for the ‘design’ Category

Alpha filter : Ie vs Firefox

October 1, 2007 2 comments

Explorer browser

  • filter:alpha(opacity=80);

Firefox

  • 1.7 over version -> opacity:0.8;
  • Etc version -> -moz-opacity:0.8;

Transparency: the ‘opacity’ property in Firefox

Name:     opacity
Value:     <alphavalue> | inherit
Initial:     1
Applies to:     all elements
Inherited:     no
Percentages:     N/A
Media:     visual
Computed value:     The same as the specified value after clipping the <alphavalue> to the range [0.0,1.0].

<alphavalue>
Syntactically a <number>.

The uniform opacity setting to be applied across an entire object.
Any values outside the range 0.0 (fully transparent) to 1.0 (fully opaque) will be clamped to this range.

If the object is a container element, then the effect is as if the contents of the container element were blended against the current background using a mask where the value of each pixel of the mask is <alphavalue>.

Tags: ,

User Experience Design vs User Interface

May 19, 2007 Leave a comment

UX( User Experience Design, UX design ) :

사용자 경험 디자인(User Experience Design, UX design)은
사용자가 제품, 서비스 혹은 시스템을 사용하거나 체험하는데 있어 지각하는 것이 가능한 조직적 상호교감적인 모델을 창조 하고 개발하는 디자인의 한 분야이다.

사용자 경험 디자인은 사용자 중심의 디자인의 원리에 기반하고 있어 인간공학, 인간과 컴퓨터 상호작용,인포메이션 아키텍춰,휴먼 팩터스, 사용자 인터페이스 디자인, 사용성 공학(Usability Engineering)의 분야와 많은 공통된 요소를 가지고 있다.

UI( User Interface ) :

사용자 인터페이스( User Interface )는
사람(사용자)과 사물 또는 체계, 특히 기계, 컴퓨터 프로그램 등 사이의 의사소통이 가능하도록 일시적 혹은 영속적인 접근을 목적으로 만들어진 물리적, 가상적 매개체를 의미한다.

사용자 인터페이스는 크게 사용자가 체계를 조작하는 입력과 체계가 그로 인한 반응 또는 결과를 보이는 출력으로 나눌 수 있다.

사용자 인터페이스를 판단하는 기준으로 사용성이 있다.
좋은 사용자 인터페이스는 심리학과 생리학에 기반하여, 사용자가 필요한 요소를 쉽게 찾고 사용하며 그 요소로부터 명확하게 의도한 결과를 쉽게 얻어 낼 수 있어야 한다.

*발췌 : http://ko.wikipedia.org/wiki

Tags: ,