LogoDOCS
Search documentation...⌘K

Getting Started

Welcome to NativineApp Requirements

Integration Guide

SDK Installation

Native Bridge API

CSS App DetectionClear App CacheApp SharingIn-App ReviewsHaptic Vibration

Core Features

Branding & IdentityApp Icons & SplashPush Notifications

Deployment

Google Play StoreApp Signing Keys
HomeDocsHaptic Vibration

Haptic Vibration

Provide physical tactile feedback to user actions (Pro feature).

4 min read
Last updated: June 15, 2026

Tactile responses elevate web actions into native-feeling gestures. Trigger haptic pulses easily (available on Pro/Release plan builds):

Method A: Zero-Code Hyperlink

Specify a duration parameter in milliseconds:

html
<a href="nativine://vibrate?duration=200">Vibrate Device</a>

Method B: SDK Javascript Function

Call the vibration API on button taps or feedback states:

javascript
if (window.Nativine) {
  window.Nativine.vibrate(150); // Vibrates for 150ms
}
Was this page helpful?
PreviousIn-App ReviewsNextBranding & Identity