DECO1400 Lecture 4

Planning for your website

Site Maps

What Tools can I use?

Prototyping

Design Fidelity

Benefits of Low-Fidelity Prototyping

Benefits of High-Fidelity Prototyping

Figure 1 - Low to High Fidelity prototyping. From https://www.mockplus.com/blog/post/high-fidelity-and-low-fidelity

Wireframes

High Fidelity Prototypes

Prototyping Tools

HTML

HTML Section Tag

<section>
  <h1>Title Text</h1>
  <p>Content here</p>
</section>

<section>
  <h1>Title text 2</h1>
  <p> content here too</p>
</section>

HTML NAV Tag

<nav>
  <a href="/html/">HTML</a> 
  <a href="/css/">CSS</a> 
  <a href="/js/">js</a> 
</nav>

CSS Box Model

CSS Animations

/* The animation code */
@keyframes example {
  from {background-color: red;}
  to {background-color: yellow;}
}

/* The element to apply the animation to */
div {
  width: 100px;
  height: 100px;
  background-color: red;
  animation-name: example;
  animation-duration: 4s;
} 
 /* The animation code */
@keyframes example {
  0%   {background-color: red;}
  25%  {background-color: yellow;}
  50%  {background-color: blue;}
  100% {background-color: green;}
}

/* The element to apply the animation to */
div {
  width: 100px;
  height: 100px;
  background-color: red;
  animation-name: example;
  animation-duration: 4s;
}