Skip to content

Instantly share code, notes, and snippets.

View fxzlzl's full-sized avatar
🎯
Focusing

Rafael Dos Santos fxzlzl

🎯
Focusing
View GitHub Profile
@fxzlzl
fxzlzl / app.js
Last active October 28, 2025 23:07
Cod 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.");
}