Skip to content

useDeviceMotion

类别
导出体积
758 B
上次更改
3 days ago

响应式 DeviceMotionEvent。提供有关设备位置和方向变化速度的信息给 Web 开发者。

示例

设备运动:
Not supported by your current browser.

用法

js
import { useDeviceMotion } from '@vueuse/core'

const {
  acceleration,
  accelerationIncludingGravity,
  rotationRate,
  interval,
} = useDeviceMotion()

注意:对于 iOS,您需要使用 trigger 并将其与用户交互绑定。 在获得权限后,API 将自动运行

状态类型描述
accelerationobject一个对象,提供设备在三个轴 X、Y 和 Z 上的加速度。
accelerationIncludingGravityobject一个对象,提供设备在三个轴 X、Y 和 Z 上受到重力影响后的加速度。
rotationRateobject一个对象,提供设备在三个方向轴 alpha、beta 和 gamma 上方向变化的速率。
intervalNumber一个表示以毫秒为单位从设备获取数据的时间间隔的数字。
ensurePermissionsboolean指示平台是否需要权限来使用 API
permissionGrantedboolean指示用户是否已授予权限。默认情况下始终为 false
triggerPromise<void>一个异步函数,用于请求用户权限。API 在获得权限后自动运行

你可以在 MDN 上找到有关状态的更多信息

组件用法

vue
<template>
  <UseDeviceMotion v-slot="{ acceleration }">
    加速度:{{ acceleration }}
  </UseDeviceMotion>
</template>

类型声明

显示类型声明
typescript
export interface DeviceMotionOptions
  extends ConfigurableWindow,
    ConfigurableEventFilter {
  /**
   * Request for permissions immediately if it's not granted,
   * otherwise label and deviceIds could be empty
   *
   * @default false
   */
  requestPermissions?: boolean
}
/**
 * 响应式 DeviceMotionEvent.
 *
 * @see https://vueuse.org/useDeviceMotion
 * @param options
 */
export declare function useDeviceMotion(options?: DeviceMotionOptions): {
  acceleration: Ref<
    DeviceMotionEventAcceleration | null,
    DeviceMotionEventAcceleration | null
  >
  accelerationIncludingGravity: Ref<
    DeviceMotionEventAcceleration | null,
    DeviceMotionEventAcceleration | null
  >
  rotationRate: Ref<
    DeviceMotionEventRotationRate | null,
    DeviceMotionEventRotationRate | null
  >
  interval: Ref<number, number>
  isSupported: ComputedRef<boolean>
  requirePermissions: ComputedRef<boolean>
  ensurePermissions: () => Promise<void>
  permissionGranted: Ref<boolean, boolean>
}
export type UseDeviceMotionReturn = ReturnType<typeof useDeviceMotion>

源码

源码演示文档

贡献者

Anthony Fu
一纸忘忧
Antério Vieira
Fernando Fernández
thefeymesaleng
Anthony Fu
vaakian X
Shinigami
wheat
Alex Kozack

更新日志

v12.4.0 on 1/10/2025
dd316 - feat: use passive event handlers everywhere is possible (#4477)
v12.1.0 on 12/22/2024
cf729 - feat: add permission controls, improve destructure (#4127)
v12.0.0-beta.1 on 11/21/2024
0a9ed - feat!: drop Vue 2 support, optimize bundles and clean up (#4349)
v9.11.0 on 1/17/2023
d5321 - fix(components): mark defineComponent as pure (#2623)