amp-google-vrview-image
Experimental
En este ejemplo se utiliza la siguiente función experimental: amp-google-vrview-image
. Active el experimento presionando el siguiente botón. Para utilizar algunos componentes es necesario que el AMP Dev Channel también esté habilitado. 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>
Si las explicaciones que se encuentran en esta página no responden todas sus preguntas, no dude en comunicarse con otros usuarios de AMP para discutir el caso de uso exacto.
Ir a Stack Overflow ¿Faltó que explicáramos alguna función?¡El proyecto AMP alienta profundamente su participación y contribuciones! Esperamos que se convierta en un miembro permanente de nuestra comunidad de código abierto, pero también agradecemos las contribuciones esporádicas sobre los temas que le apasionan especialmente.
Editar ejemplo en GitHub-
Written by @amedina