">文档:<amp-orientation-observer> - amp.dev - AMP 框架
AMP

amp-orientation-observer

说明

在用户滚动时监视视口中元素的方向,并分发可与其他 AMP 组件配合使用的事件。

 

必需脚本

<script async custom-element="amp-orientation-observer" src="https://cdn.ampproject.org/v0/amp-orientation-observer-0.1.js"></script>

支持的布局

用法

amp-orientation-observer 组件监视设备的方向,并分发低信任级别事件(alphabetagamma),这些事件报告设备在 alphabetagamma 轴上的方向变化,以 anglepercent 表示。这些事件可用于在其他组件(例如,amp-animation)上触发操作(仅限低信任操作)。

amp-orientation-observer 组件仅在与其他组件配合使用时才有用,它本身不执行任何操作。

目前,amp-animation 和 AMP 中的几个视频播放器是唯一允许低信任事件触发其操作(例如,开始动画、在动画中寻找位置、暂停视频等)的组件。

滚动范围动画

想象一下一个动画,其中时钟的时针随着用户滚动页面而旋转。

<!-- An animation that rotates a clock hand 180 degrees. -->
<!--
   Note that we are NOT setting `trigger=visibility`
   since we will manually trigger the animation.
-->
<amp-animation id="clockAnim" layout="nodisplay">
  <script type="application/json">
    {
      "duration": "3s",
      "fill": "both",
      "direction": "alternate",
      "animations": [
        {
          "selector": "#clock-scene .clock-hand",
          "keyframes": [
            {"transform": "rotate(-180deg)"},
            {"transform": "rotate(0deg)"}
          ]
        }
      ]
    }
  </script>
</amp-animation>

<!-- The clock container -->
<div id="clock-scene">
  <!--
    Use amp-orientation-observer to tie the movement of the clock scene within
    the viewport to the timeline of the animation
  -->
  <amp-orientation-observer
    on="beta:clockAnim1.seekTo(percent=event.percent)"
    layout="nodisplay"
  >
  </amp-orientation-observer>
  <amp-img layout="responsive" width="2" height="1.5" src="./img/clock.jpg">
    <div class="clock-hand"></div>
  </amp-img>
</div>

属性

alpha-range(可选)

指定关联操作应仅针对沿 z 轴指定范围内的变化进行。指定为 2 个值的空格分隔列表(例如,alpha-range="0 180")。默认情况下,相关操作将针对 0360 度之间的所有变化触发。

beta-range(可选)

指定关联操作应仅针对沿 x 轴指定范围内的变化进行。指定为 2 个值的空格分隔列表(例如,beta-range="0 180")。默认情况下,相关操作将针对 0360 度之间的所有变化触发。

示例:使用 beta-range 限制沿 x 轴观察的度数范围

想象一下一个动画,其中时钟的时针随着用户滚动页面而旋转。

<amp-orientation-observer
  beta-range="0 180"
  on="beta:clockAnim1.seekTo(percent=event.percent)"
  layout="nodisplay"
>
</amp-orientation-observer>

gamma-range(可选)

指定关联操作应仅针对沿 y 轴指定范围内的变化进行。指定为 2 个值的空格分隔列表(例如,gamma-range="0 90"。默认情况下,相关操作将针对 0360 度之间的所有变化触发。

smoothing(可选)

启用后,输出最近 n 个值的移动平均值,而不是从传感器读取的原始值。默认情况下,激活后,平滑将设置为 4 个点。

活动

这些是 amp-orientation-observer 组件分派的低信任级别事件

alpha

表示设备围绕 z 轴的运动。

beta

表示设备围绕 x 轴的运动。

gamma

表示设备围绕 y 轴的运动。这表示设备的左右运动。

验证

请参阅 AMP 验证器规范中的 amp-orientation-observer 规则

需要更多帮助吗?

您已经阅读了本文档十几次,但它并没有真正涵盖您所有的问题?也许其他人也有同感:在 Stack Overflow 上联系他们。

转到 Stack Overflow
发现了一个错误或缺少一个功能?

AMP 项目强烈鼓励您参与和贡献!我们希望您成为我们开源社区的持续参与者,但我们也欢迎您对特别热衷的问题进行一次性贡献。

转到 GitHub