amp-google-vrview-image
Experimental
Questo esempio fa uso delle seguenti funzioni sperimentali: amp-google-vrview-image
. Avvia l'esperimento con il pulsante in basso. Alcuni componenti richiedono che sia abilitato anche AMP Dev Channel. Learn more about experimental features.
- AMP VersionPROD DEV
Introduction
The amp-google-vrview-image
extension allows embedding 360 degree VR media into AMP pages.
If experimenting with this sample on a desktop web browser, you can interact with the displayed image by clicking on it and dragging the mouse around. The best way to perceive the effects enabled by this component is to view it on a mobile device and interact with the images by moving the device around using the cardboard viewer.
The attributes supported by this component are:
- src: the source of the image being displayed
- stereo: if provided, the image is considered to be a stereoscopic image; otherwise it is a monoscopic image.
- yaw: initial yaw rotation of the viewer
- yaw-only: if specified, restrict motion to yaw rotations only
Setup
Import the amp-google-vrview-image
component in the header.
<script async custom-element="amp-google-vrview-image" src="https://cdn.ampproject.org/v0/amp-google-vrview-image-0.1.js"></script>
Basic usage
By default amp-google-vrview-image
expects a mono image and the yaw value is 0.
<amp-google-vrview-image src="https://storage.googleapis.com/vrview/examples/coral.jpg" width="400" height="300" layout="responsive"> </amp-google-vrview-image>
Stereo
Add the stereo
attribute for stereoscopic images
<amp-google-vrview-image src="https://storage.googleapis.com/vrview/examples/coral.jpg" stereo width="400" height="300" layout="responsive"> </amp-google-vrview-image>
Yaw
Add the stereo
attribute for stereoscopic images. The initial yaw value is 90 degrees
<amp-google-vrview-image src="https://storage.googleapis.com/vrview/examples/coral.jpg" stereo yaw="90" width="400" height="300" layout="responsive"> </amp-google-vrview-image>
Yaw-only
Use the yaw-only
attribute to restrict motion to the yaw axis only
<amp-google-vrview-image src="https://storage.googleapis.com/vrview/examples/coral.jpg" stereo yaw-only width="400" height="300" layout="responsive"> </amp-google-vrview-image>
Se le spiegazioni riportate in questa pagina non rispondono a tutte le tue domande, non esitare a contattare altri utenti AMP per discutere il tuo caso d'uso specifico.
Vai a Stack Overflow Ci sono funzioni non descritte?Il progetto AMP invita tutti a partecipare e dare il proprio contributo! Ci auguriamo che tu possa partecipare regolarmente alla nostra community open source, ma saremo anche lieti di ricevere eventuali contributi una-tantum sulle questioni che ti interessano.
Modifica esempio in GitHub-
Written by @amedina