Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 1.29 KB

rotation-timer.md

File metadata and controls

34 lines (26 loc) · 1.29 KB

Time to next turn is one of the main drivers of participant engagement. In other words, the higher the time to next turn, the higher the probability to become disengaged.

Participants
  • next turn in 30 minutes: rotation time <= 5 minutes (recommended)
  • next turn in 45 minutes: rotation time <= 5 minutes
  • next turn in 60 minutes: rotation time <= 5 minutes
<script type="application/javascript"> function rotationTime(size, timeToNextTurn) { return Math.round(timeToNextTurn / (size - 1)) } function update() { let size = parseInt(document.getElementById('size').value) document.getElementById('rotationTime30Minutes').innerText = rotationTime(size, 30) document.getElementById('rotationTime45Minutes').innerText = rotationTime(size, 45) document.getElementById('rotationTime60Minutes').innerText = rotationTime(size, 60) } update() </script>