Created
May 14, 2015 19:47
-
-
Save EtienneR/88ca1158d62ea6e0886d to your computer and use it in GitHub Desktop.
HTML 5 Vibration (only for FirefoxOS and few others http://mobilehtml5.org/)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="viewport" content="width=device-width, maximum-scale=1" /> | |
<title>Vibrate Me</title> | |
<style> | |
body{ | |
background: #eee; | |
margin: 0 auto; | |
width: 320px; | |
} | |
button, input{ | |
display: inline-block; | |
height: 32px; | |
margin: 1% 0; | |
width: 100%; | |
} | |
button{ | |
background: #fff; | |
border: none; | |
border-radius: 2px; | |
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26); | |
color: #646464; | |
cursor: pointer; | |
font-size: 0.9em; | |
line-height: 32px; | |
transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1); | |
transition-delay: 0.2s; | |
} | |
button:focus{ | |
background-color: #0f9d58; | |
color: #fff; | |
} | |
.none{ | |
display: none; | |
} | |
</style> | |
</head> | |
<body> | |
<input type="number" id="miliseconds" placeholder="Number of seconds" /> | |
<button onclick="vibrateMe()">Vibrate me !</button> | |
<div id="cancel"></div> | |
<script> | |
function vibrateMe(cancel) { | |
if ('vibrate' in navigator) { | |
cancelElement = document.getElementById('cancel'); | |
if (cancel == 0) { | |
navigator.vibrate(0); | |
cancelElement.setAttribute('class', 'none'); | |
} else { | |
cancelElement.setAttribute('class', ''); | |
cancelElement.innerHTML = '<button onclick="vibrateMe(0)">Cancel</button>'; | |
var miliseconds = document.getElementById('miliseconds'); | |
navigator.vibrate(parseInt(miliseconds.value) * 1000); | |
} | |
} else { | |
alert('Vibrate is not available :('); | |
} | |
} | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment