Gyroscope: x-Eigenschaft

Limited availability

This feature is not Baseline because it does not work in some of the most widely-used browsers.

Sicherer Kontext: Diese Funktion ist nur in sicheren Kontexten (HTTPS) in einigen oder allen unterstützenden Browsern verfügbar.

Die schreibgeschützte Eigenschaft x des Gyroscope-Interfaces liefert eine Zahl, die die Winkelgeschwindigkeit des Geräts entlang seiner x-Achse angibt.

Wert

Eine Number.

Beispiele

Das Gyroskop wird typischerweise im reading-Ereignis-Callback ausgelesen. Im untenstehenden Beispiel geschieht dies sechzig Mal pro Sekunde.

js
let gyroscope = new Gyroscope({ frequency: 60 });

gyroscope.addEventListener("reading", (e) => {
  console.log(`Angular velocity along the X-axis ${gyroscope.x}`);
  console.log(`Angular velocity along the Y-axis ${gyroscope.y}`);
  console.log(`Angular velocity along the Z-axis ${gyroscope.z}`);
});
gyroscope.start();

Spezifikationen

Specification
Gyroscope
# gyroscope-x

Browser-Kompatibilität

BCD tables only load in the browser