Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 541 Bytes

Vibrate.md

File metadata and controls

19 lines (13 loc) · 541 Bytes

<Vibrate>

Use navigator.vibrate() to generate device vibrations.

Props

  • ms - time in milliseconds for how long to vibrate. Can be a single number, or an array of numbers. If array of numbers is specified, every second value is used a vibration lenght and values in between are considered pauses between the vibrations.

Example

import {Vibrate} from 'libreact/lib/Vibrate';

<Vibrate ms={200} />
<Vibrate ms={[100, 100, 100, 100, 100]} />