/
nick.sh
/
javascript-apps
Обзор
Документация
Войти
/
nick.sh
/
javascript-apps
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
qr-code-generator_app/script.js
16 строк
519 B
Shaposhnikov-Nick
qr-code generator
26 янв 2024, 11:24
26 янв 2024, 11:24
28978cb
Код
Авторство
О чём код?
const input = document.querySelector("#input"); const imgBox = document.querySelector("#imgBox"); const img = document.querySelector("#qr-code"); const generateBtn = document.querySelector("#generate"); function generateQR() { if (input.value.length > 0) { img.src = `https://api.qrserver.com/v1/create-qr-code/?size=150x150&data=${input.value}`; imgBox.classList.add("show-img"); } else { input.classList.add("error"); setTimeout(() => { input.classList.remove("error"); }, 1000); } }