Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
const element = document.querySelector('.order-button__line--bottom'); if(getComputedStyle(element).bottom == '90%'){ document.querySelector('.order-button').style.display = 'none'; }
console.log(getComputedStyle(element).bottom); /*Выводит в консоль bottom в пикселях*/ document.querySelector('.order-button').style.display = 'none'; /*Пропадает блок с классом .order-button*/
Классы введены правильно, ну оно не работает(
const line = document.querySelector('.order-button__line--bottom'); const lineBottom = getComputedStyle(line).bottom; console.log(lineBottom); /*Выводит -144px*/ const button = document.querySelector('.order-button'); const buttonHeight = button.offsetHeight; console.log(buttonHeight); /*Выводит 144*/ var percent = buttonHeight / lineBottom * 100; console.log(percent); /*Выводит Nan*/
const lineBottom = Number(getComputedStyle(line).bottom); /*Выдает Nan*/