DEV Community

Cover image for Day 93/100 Web Design
Rio Cantre
Rio Cantre

Posted on • Originally published at dev.to

Day 93/100 Web Design

Making time to think about the basics of web design would evaluate the significance of the structures and compositions, which are elements for the entire concept.

banner

Clickability

For users on the web, the mouse click is perhaps the most fundamental human-computer interaction. The web became the web partially through the power of hypertext, or text in one document that links to other documents or resources. To this day, users navigate the web largely through mouse clicks (and finger taps on mobile and tablet devices).

Affordances

Objects afford the ability of users to interact with them in various ways. For instance, a bench affords a person the ability to sit on it, but if it is not affixed to the ground, it also affords the user the ability to turn it over, throw (if the user is physically able), or perform any number of other actions. Even though the designer was probably not designing the bench with throwing in mind as the primary user behavior, the object still affords this action. Potentials for interaction are collectively called the affordances of an object.

Signifiers

Signifiers are aspects of an object that a designer uses to indicate potential and intended affordances of an object. For example, a teacup with no handle affords the ability to lift it and drink out of it. But designers and potters often add handles to signify that users can and should lift up the object and take a sip. The handle is an example of a common user experience pattern.

Code Snippets

function makeLine(length) {
    var line = "";
    for (var j = 1; j <= length; j++) {
        line += "* ";
    }
        return line + "\n";
    }

function buildTriangle(length){
    var triangle = "";
    var lineRow = 1;
    for (lineRow = 1 ; lineRow <= length ; lineRow++){
         triangle = triangle + makeLine(lineRow);
    }
         return triangle;
    }
Enter fullscreen mode Exit fullscreen mode

Summary

One more week and I'll be over. The request for comments seems daunting, I approach on several people but only a few responded, it seems everybody are always busy. It's good to be busy.

resource

Oldest comments (0)