/
githubmirror
/
50projects50days
Обзор
Документация
Войти
/
githubmirror
/
50projects50days
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
password-strength-background/script.js
9 строк
306 B
Brad Traversy
Password strength background
07 окт 2020, 18:50
07 окт 2020, 18:50
db455d2
Код
Авторство
О чём код?
const password = document.getElementById('password') const background = document.getElementById('background') password.addEventListener('input', (e) => { const input = e.target.value const length = input.length const blurValue = 20 - length * 2 background.style.filter = `blur(${blurValue}px)` })