search
HomeWeb Front-endJS TutorialHow to Use the HTML5 Vibration API

How to Use the HTML5 Vibration API

The popularity of mobile devices has made more and more users access web pages through mobile phones and tablets. As of December 2013, one out of every five web page visits came from a mobile device. This ratio may be higher if your website or app is able to adapt to mobile devices. Multi-device development faces challenges, but it also brings possibilities that desktop computers cannot achieve. For example, the vibration mechanism is a simple haptic feedback device that reminds you of new messages or calls. It is especially useful in noisy or quiet environments (sound can cause interference). Wouldn't it be great if your app can use the vibration feature?

  • Walking route instructions: turn left and vibrate twice.
  • When an event occurs or you are approaching someone, the phone vibrates in a specific way.
  • You can send secret messages using vibration-based Morse codes!
  • The game can enhance the gaming experience by vibrating when you collide or get hit by a missile.

HTML5 Vibration API allows you to do this!

Is vibration required?

Just because we can make the phone vibrate, it doesn't mean we should do that. Vibration can severely drain the battery, so if the battery is low or the game is not running in the current tab, it is best to disable it. Depending on your application, it is best to provide user options so that they can enable, disable, or configure vibration conditions.

Browser support and detection

This API is relatively new and is currently limited to the latest versions of Firefox and Chrome support. Earlier versions require moz and webkit prefixes, respectively. You should also use a device with a vibration mechanism – the API may be available in your browser, but without the vibration mechanism, you won't know if it works! Use the following checks to detect vibration support:

if ("vibrate" in navigator) {
    // 支持振动 API
}

To check and use a prefixed version, you can use the following code:

// 启用振动支持
navigator.vibrate = navigator.vibrate || navigator.webkitVibrate || navigator.mozVibrate || navigator.msVibrate;

if (navigator.vibrate) {
    // 支持振动 API
}

Vibration Basics

The basic vibration can be set by passing milliseconds to navigator.vibrate:

// 振动一秒钟
navigator.vibrate(1000);

Alternatively, you can pass an array containing vibration and delay parameters specified in milliseconds. For example, to vibrate for 500 milliseconds, wait for 300 milliseconds, and then vibrate for 100 milliseconds again:

// 振动一秒钟
navigator.vibrate([500, 300, 100]);

Array terms with even indexes define vibration time (the array starts at zero, so the first and third terms are 0 and 2, respectively). An array item with an odd index defines the delay time. Vibration is non-blocking; your JavaScript code will continue to run when the device is vibrating. To stop vibration, you can pass zeros to navigator.vibrate. This concept can be useful in the game. For example, when a user crashes a car, you set navigator.vibrate(10000). However, if the collision effect ends within 10 seconds, set navigator.vibrate(0) to end the vibration.

Vibration Demo

To test the API on your device...View Vibration API Demo...View all HTML, CSS, and JavaScript source code. The form parameter builds an array that is passed to navigator.vibrate when clicking Start. When the "Stop" button is clicked, navigator.vibrate(0); is executed. Use the Vibration API as much as you like, let me know if you have any interesting uses.

HTML5 Vibration API FAQ

What is the HTML5 Vibration API?

HTML5 Vibration API is a powerful tool that allows developers to programmatically access vibrating hardware on their devices (if present). This can be used to provide haptic feedback to the user based on various events, such as receiving notifications or pressing a button. It should be noted that the API does not guarantee that vibrations will occur, as the final decision is left to the operating system and the user's settings.

How to use the Vibration API in my web application?

To use the vibration API, you need to call the navigator.vibrate() method. This method accepts a single integer or array of integers. A single integer represents the number of milliseconds of vibrations. An array of integers represents vibration and pause modes. For example, navigator.vibrate(200) will vibrate the device for 200 milliseconds, while navigator.vibrate([200, 100, 200]) will vibrate the device for 200 milliseconds, pause for 100 milliseconds, and then vibrate again for 200 milliseconds.

Can I use the Vibration API on all devices?

Vibration API is mainly used in mobile devices with built-in vibration hardware. However, the API can be called on any device. If the device does not support vibration, the call to navigator.vibrate() will be simply ignored.

How to check if the device supports vibration API?

You can use the vibrate property of the navigator object to check whether the device supports the vibration API. If this property exists, the device supports the API. Here is how you can do this: if ("vibrate" in navigator) { / The device supports vibration / }.

Can I stop vibrating before the vibration is over?

Yes, you can stop the vibration before it ends by calling the navigator.vibrate() method with parameter 0 or an empty array. For example, navigator.vibrate(0) or navigator.vibrate([]).

Does all browsers support the vibration API?

Most modern browsers, including Chrome, Firefox, and Opera, support the vibration API. However, Internet Explorer does not support it, and Safari has limited support.

Can I use the vibration API in the worker thread context?

No, the vibration API is not available in the worker thread context. It can only be used in the main browser context.

Are there any restrictions on using the Vibration API?

Yes, there are some limitations to using the Vibration API. For example, in some browsers, APIs can only be used in response to user actions, such as clicks or touches, to prevent abuse or annoying use.

Can I specify the intensity of the vibration?

No, the Vibration API does not allow you to specify the intensity of the vibration. The strength is controlled by the device's hardware and operating system.

Can I use the Vibration API to create complex vibration modes?

Yes, you can create complex vibration patterns using the vibration API by passing an array of integers to the navigator.vibrate() method. Each integer in the array represents the duration of vibration or pause. For example, navigator.vibrate([200, 100, 200, 100, 200]) will create a pattern consisting of three vibrations, each lasting 200 milliseconds, separated by two pauses, each lasting 100 milliseconds.

The above is the detailed content of How to Use the HTML5 Vibration API. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Python vs. JavaScript: Which Language Should You Learn?Python vs. JavaScript: Which Language Should You Learn?May 03, 2025 am 12:10 AM

Choosing Python or JavaScript should be based on career development, learning curve and ecosystem: 1) Career development: Python is suitable for data science and back-end development, while JavaScript is suitable for front-end and full-stack development. 2) Learning curve: Python syntax is concise and suitable for beginners; JavaScript syntax is flexible. 3) Ecosystem: Python has rich scientific computing libraries, and JavaScript has a powerful front-end framework.

JavaScript Frameworks: Powering Modern Web DevelopmentJavaScript Frameworks: Powering Modern Web DevelopmentMay 02, 2025 am 12:04 AM

The power of the JavaScript framework lies in simplifying development, improving user experience and application performance. When choosing a framework, consider: 1. Project size and complexity, 2. Team experience, 3. Ecosystem and community support.

The Relationship Between JavaScript, C  , and BrowsersThe Relationship Between JavaScript, C , and BrowsersMay 01, 2025 am 12:06 AM

Introduction I know you may find it strange, what exactly does JavaScript, C and browser have to do? They seem to be unrelated, but in fact, they play a very important role in modern web development. Today we will discuss the close connection between these three. Through this article, you will learn how JavaScript runs in the browser, the role of C in the browser engine, and how they work together to drive rendering and interaction of web pages. We all know the relationship between JavaScript and browser. JavaScript is the core language of front-end development. It runs directly in the browser, making web pages vivid and interesting. Have you ever wondered why JavaScr

Node.js Streams with TypeScriptNode.js Streams with TypeScriptApr 30, 2025 am 08:22 AM

Node.js excels at efficient I/O, largely thanks to streams. Streams process data incrementally, avoiding memory overload—ideal for large files, network tasks, and real-time applications. Combining streams with TypeScript's type safety creates a powe

Python vs. JavaScript: Performance and Efficiency ConsiderationsPython vs. JavaScript: Performance and Efficiency ConsiderationsApr 30, 2025 am 12:08 AM

The differences in performance and efficiency between Python and JavaScript are mainly reflected in: 1) As an interpreted language, Python runs slowly but has high development efficiency and is suitable for rapid prototype development; 2) JavaScript is limited to single thread in the browser, but multi-threading and asynchronous I/O can be used to improve performance in Node.js, and both have advantages in actual projects.

The Origins of JavaScript: Exploring Its Implementation LanguageThe Origins of JavaScript: Exploring Its Implementation LanguageApr 29, 2025 am 12:51 AM

JavaScript originated in 1995 and was created by Brandon Ike, and realized the language into C. 1.C language provides high performance and system-level programming capabilities for JavaScript. 2. JavaScript's memory management and performance optimization rely on C language. 3. The cross-platform feature of C language helps JavaScript run efficiently on different operating systems.

Behind the Scenes: What Language Powers JavaScript?Behind the Scenes: What Language Powers JavaScript?Apr 28, 2025 am 12:01 AM

JavaScript runs in browsers and Node.js environments and relies on the JavaScript engine to parse and execute code. 1) Generate abstract syntax tree (AST) in the parsing stage; 2) convert AST into bytecode or machine code in the compilation stage; 3) execute the compiled code in the execution stage.

The Future of Python and JavaScript: Trends and PredictionsThe Future of Python and JavaScript: Trends and PredictionsApr 27, 2025 am 12:21 AM

The future trends of Python and JavaScript include: 1. Python will consolidate its position in the fields of scientific computing and AI, 2. JavaScript will promote the development of web technology, 3. Cross-platform development will become a hot topic, and 4. Performance optimization will be the focus. Both will continue to expand application scenarios in their respective fields and make more breakthroughs in performance.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version