Skip to content

Instantly share code, notes, and snippets.

@ahmethakanbesel
Last active September 8, 2017 07:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ahmethakanbesel/815ddc5dd85481545363d9203684ce01 to your computer and use it in GitHub Desktop.
Save ahmethakanbesel/815ddc5dd85481545363d9203684ce01 to your computer and use it in GitHub Desktop.
Javascript navigator.vibration API Example
<button onclick="titret(1000)">Titret</button>
<button onclick="titret([1000, 200, 1000, 2000, 400]);">Titret (3 defa aralıklı)</button>
<script>
function titret(sure) {
navigator.vibrate(sure);
console.log(sure + "ms");
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment