Provide physical tactile feedback to user actions (Pro feature).
Tactile responses elevate web actions into native-feeling gestures. Trigger haptic pulses easily (available on Pro/Release plan builds):
Specify a duration parameter in milliseconds:
<a href="nativine://vibrate?duration=200">Vibrate Device</a>
Call the vibration API on button taps or feedback states:
if (window.Nativine) {
window.Nativine.vibrate(150); // Vibrates for 150ms
}