device
获取使用 Artyom 的设备的相关信息
let artyom = new Artyom();
// Verify if artyom is supported
window.onload = function(){
if(artyom.Device.isChrome){
if(!artyom.Device.isMobile){
alert("Artyom can talk and obey commands in this browser, however the voice will be the default voice of the device. Cannot force language here.");
}else{
// Everything okay ! , use artyom normally here !
}
}else{
alert("Artyom only works with The Google Chrome Browser !");
}
};Last updated
Was this helpful?