我爲我的項目添加了搖動手勢插件。爲什麼搖動事件不起作用phonegap?
這是我的代碼:
<button onclick="myFunc()" id="round">Gesture Call</buttom>
<script>
function myFunction()
{
window.open("emcall.html");
navigator.vibrate([2000,2000,2000,2000,2000,2000,2000,2000,2000,2000,2000,2000,2000]);
navigator.notification.beep(10);
}
function myFunc()
{
alert('shake working');
function onShake()
{
alert("shake success");
window.open("emcall.html");
}
function onError()
{
alert("errorq");
}
shake.startWatch(onShake,30,onError);
}
</script>
有些事情錯在mycode的幫助我克服此問題。
你有沒有下載shake插件? – wot
@ e4en yeah通過cli downloded –
它不工作的系統是什麼?你嘗試過別人嗎? – ste2425