Pulled ALL skills from 15 source repositories: - anthropics/skills: 16 (docs, design, MCP, testing) - obra/superpowers: 14 (TDD, debugging, agents, planning) - coreyhaines31/marketingskills: 25 (marketing, CRO, SEO, growth) - better-auth/skills: 5 (auth patterns) - vercel-labs/agent-skills: 5 (React, design, Vercel) - antfu/skills: 16 (Vue, Vite, Vitest, pnpm, Turborepo) - Plus 13 individual skills from various repos Mosaic Stack is not limited to coding — the Orchestrator and subagents serve coding, business, design, marketing, writing, logistics, analysis, and more. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
63 lines
2.2 KiB
Markdown
63 lines
2.2 KiB
Markdown
---
|
|
category: Sensors
|
|
---
|
|
|
|
# useDeviceOrientation
|
|
|
|
Reactive [DeviceOrientationEvent](https://developer.mozilla.org/en-US/docs/Web/API/DeviceOrientationEvent). Provide web developers with information from the physical orientation of the device running the web page.
|
|
|
|
## Usage
|
|
|
|
```ts
|
|
import { useDeviceOrientation } from '@vueuse/core'
|
|
|
|
const {
|
|
isAbsolute,
|
|
alpha,
|
|
beta,
|
|
gamma,
|
|
} = useDeviceOrientation()
|
|
```
|
|
|
|
| State | Type | Description |
|
|
| ---------- | --------- | -------------------------------------------------------------------------------------------------------------------------- |
|
|
| isAbsolute | `boolean` | A boolean that indicates whether or not the device is providing orientation data absolutely. |
|
|
| alpha | `number` | A number representing the motion of the device around the z axis, express in degrees with values ranging from 0 to 360. |
|
|
| beta | `number` | A number representing the motion of the device around the x axis, express in degrees with values ranging from -180 to 180. |
|
|
| gamma | `number` | A number representing the motion of the device around the y axis, express in degrees with values ranging from -90 to 90. |
|
|
|
|
You can find [more information about the state on the MDN](https://developer.mozilla.org/en-US/docs/Web/API/DeviceOrientationEvent#instance_properties).
|
|
|
|
## Component Usage
|
|
|
|
```vue
|
|
<template>
|
|
<UseDeviceOrientation v-slot="{ alpha, beta, gamma }">
|
|
Alpha: {{ alpha }}
|
|
Beta: {{ beta }}
|
|
Gamma: {{ gamma }}
|
|
</UseDeviceOrientation>
|
|
</template>
|
|
```
|
|
|
|
## Type Declarations
|
|
|
|
```ts
|
|
/**
|
|
* Reactive DeviceOrientationEvent.
|
|
*
|
|
* @see https://vueuse.org/useDeviceOrientation
|
|
* @param options
|
|
*
|
|
* @__NO_SIDE_EFFECTS__
|
|
*/
|
|
export declare function useDeviceOrientation(options?: ConfigurableWindow): {
|
|
isSupported: ComputedRef<boolean>
|
|
isAbsolute: ShallowRef<boolean, boolean>
|
|
alpha: Ref<number | null, number | null>
|
|
beta: Ref<number | null, number | null>
|
|
gamma: Ref<number | null, number | null>
|
|
}
|
|
export type UseDeviceOrientationReturn = ReturnType<typeof useDeviceOrientation>
|
|
```
|