Skip to content

Instantly share code, notes, and snippets.

View fiusa-re's full-sized avatar
🎯
Focusing

fiusa-re

🎯
Focusing
View GitHub Profile
@fiusa-re
fiusa-re / app.js
Last active April 9, 2026 03:23
Código de leitura de tela
if ('speechSynthesis' in window) {
let utterance = new SpeechSynthesisUtterance(texto);
utterance.lang = 'pt-BR';
utterance.rate = 1.2;
window.speechSynthesis.speak(utterance);
} else {
console.log("Web Speech API não suportada neste navegador.");
}