Week 5 Flashcards

1
Q

What are mental models, and what is their role in UI design?

A

A mental model is an idea of how something works. They are constructed to help remember how things work, and simulate what happens to the internal state of the device.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How are mental models related to metaphors and conceptual blends?

A

Mental models can be constructed through explicit metaphors, such as save, trash can or server, but more often through conceptual blends.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What are the five visual design principles (from NN/g)

A

Scale, Visual Hierarchy, Balance, Contrast, Gestalt principles.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What are the challenges involved in adapting a user-interface to different types of devices with different display sizes and input modalities?

A

Not only do they not have the same size, but going from computer screen to mobile device such as phone or tablet is a shift from a more width than height format to a more height than width format, which requires different designs, since it cannot just be resized.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is responsive web design and the techniques that compromise it?

A

Responsive web design is creating sites that work on differently sized devices by detecting the size and responding with a fitting format. The techniques used in combination are media queries, fluid grids and fluid images.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How are media queries done?

A

@ media screen and (min-width: 800px) {
.container {
margin: 1em 2em;
}
}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How are fluid images done?

A

The basic version is to set the max-width to 100%. The more advances version is creating multiple versions of the image in different formats, and using the fitting one based on the size.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly