Window: screenTop 属性

Window.screenTop 只读属性以 CSS 像素为单位返回用户浏览器视窗顶部边框到屏幕顶部的垂直距离。

注意: screenTop 是旧版 Window.screenY 属性的别名。screenTop 最初只在 IE 中支持,但由于其普及性而被引入到所有地方。

一个数字,等于从浏览器视窗顶边到屏幕顶边的 CSS 像素数。

示例

在我们的 screenleft-screentop 示例中,您将看到一个画布,上面绘制了一个圆圈。在此示例中,我们使用 screenLeft/screenTop 以及 Window.requestAnimationFrame() 来不断地重新绘制屏幕上相同物理位置的圆圈,即使窗口位置被移动。

js
initialLeft = window.screenLeft + canvasElem.offsetLeft;
initialTop = window.screenTop + canvasElem.offsetTop;

function positionElem() {
  let newLeft = window.screenLeft + canvasElem.offsetLeft;
  let newTop = window.screenTop + canvasElem.offsetTop;

  let leftUpdate = initialLeft - newLeft;
  let topUpdate = initialTop - newTop;

  ctx.fillStyle = "rgb(0 0 0)";
  ctx.fillRect(0, 0, width, height);
  ctx.fillStyle = "rgb(0 0 255)";
  ctx.beginPath();
  ctx.arc(
    leftUpdate + width / 2,
    topUpdate + height / 2 + 35,
    50,
    degToRad(0),
    degToRad(360),
    false,
  );
  ctx.fill();

  pElem.textContent = `Window.screenLeft: ${window.screenLeft}, Window.screenTop: ${window.screenTop}`;

  window.requestAnimationFrame(positionElem);
}

window.requestAnimationFrame(positionElem);

在代码中,我们还包含了一段代码片段,用于检测 screenLeft 是否受支持,如果不受支持,则使用 Window.screenX/Window.screenY 来填充 screenLeft/screenTop

js
if (!window.screenLeft) {
  window.screenLeft = window.screenX;
  window.screenTop = window.screenY;
}

规范

规范
CSSOM 视图模块
# dom-window-screentop

浏览器兼容性

BCD 表格仅在浏览器中加载

另请参阅