Wiki Markup |
---|
{html}<style> .hidable{display:none;} </style> <script>{html} |
Wiki Markup |
---|
{html}function showhide(section){ var ele=document.getElementById(section); if(ele.style.display!="block") { ele.style.display="block"; document.getElementById(section+"show").innerHTML = "Hide this design"; } else { ele.style.display="none"; document.getElementById(section+"show").innerHTML = "Show this design"; }}</script> {html} |
GR3 - Paper Prototyping
1.
...
Scenario given to the users
2. Tasks requested to the user
3. Description of the initial prototype
Wiki Markup |
---|
{html}<a href="javascript:showhide('design1');" id="design1show">Show this design</a>{html} |
Wiki Markup |
---|
{html}<div id="design1" class="hidable">{html} |
...
Wiki Markup |
---|
{html}</div>{html} |
...
4. Prototype testing
4.1 First Round
User 1:
Wiki Markup |
---|
{html}<a href="javascript:showhide('design2');" id="design2show">Show this design</a>{html} |
Wiki Markup |
---|
{html}<div id="design2" class="hidable">{html} |
- Observations: *
- Changes made to the prototype after this test: *
Wiki Markup |
---|
{html}</div>{html} |