“getBoundingClientRect () javaScript” Ответ

getBoundingClientRect () javaScript

  var div = document.getElementById("myDiv");
  var rect = div.getBoundingClientRect();
  x = rect.left;
  y = rect.top;
  w = rect.width;
  h = rect.height;
Xenophobic Xenomorph

GetBoundingClientRect

// Return the size of an element and its position relative to the viewport:

const rect = obj.getBoundingClientRect();
console.log(rect)
Lioruby

Ответы похожие на “getBoundingClientRect () javaScript”

Вопросы похожие на “getBoundingClientRect () javaScript”

Больше похожих ответов на “getBoundingClientRect () javaScript” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования