Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 11 Current »

Design Issue to be Resolved

In the John Travoltage simulation, the arm and leg can be pivoted in different angles. To improve accessibility, it is proposed that the simulation use native HTML controls as a way of controlling the limbs because HTML controls are readily understood by users and ATs.

The HTML slider and number spinner are two possible implementations, but both have advantages and disadvantages. It is undecided at the moment which implementation is ideal.

Audience: The John Travoltage simulation is often used as a simple introduction to PhET sims and is targeted at younger users.

Approach #1: Slider Implementation

An HTML slider is controlled using the following keystrokes:

The idea is to use a slider as a way to move the arm. For example, moving the slider left (decreasing the value) moves the arm counter-clockwise moving the slider right (increasing the value) moves the arm clockwise.

A problem arises when a key stroke for changing the slider does not match what happens visually. For example, it's possible that the user presses the down arrow to decrease the value of the slider, but visually the arm rotates upward. This can be unexpected behaviour.

Example:

A slider is configured to go from 0 to 60, with 0 value being at the top of the circle. From the 0 to 30 positions, pressing down makes the arm move upward, and pressing up makes the arm move downward. Similarly from 15 to 45, pressing left makes the arm rotate right, and pressing right makes the arm move left.

This issue exists regardless of the orientation of the slider (horizontal or vertical slider doesn't matter), and the number scale used.

Issues

  • Is the inverted controls in these areas acceptable.
  • You can restrict rotation to just the right side of the rotation arc (i.e. 0 to 30).
    • Is the restricted arm movement acceptable? Issue persists.
  • Is 0 to 60 (clock scale) acceptable? are there alternatives?

Approach #2: Number Spinner Implementation

An HTML number spinner consists of two components: an editable number field, and buttons to increase or decrease the value in the number field. The user would be able to enter a number value to move the arm to a new position, or use the up and down arrows to increase or decrease the value.

For an example of how a number spinner works, see this demo: http://www.w3schools.com/jsref/tryit.asp?filename=tryjsref_number_get.

 

Issues

Adding a number spinner to the John Travoltage sim brings up some design issues:

  • A number spinner with an editable field may add a little more complexity to the interaction.
  • Need consideration for placing the number spinner on the interface since arm and leg moves.
    • i.e. do you make the spinner move with the limbs, or do you fix it in place? Where would you put it so nothing gets obscured?
  • For the left side of the rotation arc (see the diagram for the Slider Implementation above), the up and down key presses result in the arm moving in the opposite direction.
  • The number field make create too much emphasis on the number value - introducing mathematics to the simulation which may not be necessary.
  • What number scale should be used?
    • -180 to 180
    • 0 to 360
    • 0 to 60
    • other?

Previous Design (Deprecated)

Previously we proposed to control the leg movement in an application mode. After user testing, it was shown that this is no longer ideal because screen reader users are more accustomed to native HTML controls.

  • Left or up arrow - counter clockwise movement
  • Right or down arrow - clockwise movement
  • Shift key - hold down shift + arrow key to make the arm or leg move more quickly.

Other notes

  • No labels