Саша Шинкевич (@neesoglasnaja)
VisualViewport = {
// Read-only
offsetLeft
offsetTop
pageLeft
pageTop
width
height
scale
}
// Как получить значение зума*
const scale = VisualViewport.scale
const bc = new BroadcastChannel('test_channel')
bc.postMessage('This is a test message.')
bc.onmessage = function (ev) { ... }
bc.close();
const barcodeDetector = new BarcodeDetector();
barcodeDetector.detect(image)
.then(barcodes => { ... })
.catch(e => { ... });
if ("vibrate" in navigator) {
...
navigator.vibrate(200) // одиночная вибрация
navigator.vibrate([100,30,100,30,...]) // последовательность
...
}
const supported = ('contacts' in navigator
&& 'ContactsManager' in window);
const props = ['name', 'email', 'tel', 'address', 'icon'];
const opts = { multiple: true };
navigator.contacts.select(props, opts)
.then(contacts => { ... })
.catch(e => { ... })
— Нельзя поверить в невозможное!
— Просто у тебя мало опыта, – заметила Королева. – В твоем возрасте я уделяла этому полчаса каждый день! В иные дни я успевала поверить в десяток невозможностей до завтрака!
bit.ly/FwDays-WebAPIs
Саша Шинкевич (@neesoglasnaja)