Prototype – 元素对象 viewportOffset() 方法

返回到:Prototype – 元素对象

此方法返回元素相对于视口的 X/Y 坐标。返回的位置将是绝对的。

– 所有值都以数字形式返回,尽管它们以像素表示。

语法

element.viewportOffset();

返回值

数字数组 [Left, Top]。

例子

<html>
   <head>
      <title>Prototype examples</title>
      <script type = "text/javascript" src = "/javascript/prototype.js"></script>
      
      <script>
         function showResult() {
            var coordinates = $('visible').viewportOffset();
            alert("Distance from the Left : " +  coordinates[0] );
            alert("Distance from the Top  : " +  coordinates[1] );
         }
      </script>
   </head>

   <body>
      <div id = "visible" style = "position:absolute;left:50px; top:50px;">
         This is visible division 50 pixels down from the top.
      </div>
      <input type = "button" value = "Click" onclick = "showResult();"/>
   </body>
</html>

返回到:Prototype – 元素对象

作者:terry,如若转载,请注明出处:https://www.web176.com/prototype_api/8974.html

(0)
打赏 支付宝 支付宝 微信 微信
terryterry
上一篇 2023年2月8日
下一篇 2023年2月8日

相关推荐

发表回复

登录后才能评论