Getting started
Minimal image viewer embed with default controls.
Preview
Props & interactive options
| Prop | Type | Default | Description | Try it |
|---|---|---|---|---|
| enable_download | url param | 0 | Expose a download button for each image. | |
| enable_fullscreen | url param | 1 | Enable the fullscreen toggle. |
Documentation
The simplest image viewer setup: navigation arrows, counter, and an optional fullscreen toggle. Expose the download button when you want viewers to save individual images, or keep it hidden for display-only embeds.
Code
<div style="padding:56.25% 0 0 0;position:relative;">
<iframe
src="https://app.videas.com/embed/019dcfd1-e745-71d6-9db6-f702b75bd97b/?enable_download=0&enable_fullscreen=1"
width="100%" height="100%"
frameborder="0" allowfullscreen
allow="fullscreen"
style="position:absolute;top:0;left:0"
></iframe>
</div>Frequently asked questions
Which image formats are supported?
Videas accepts PNG, JPEG, WebP, AVIF, and animated GIFs. Non-animated formats are transcoded to WebP/AVIF on upload and served in multiple sizes so the viewer always picks the lightest variant that fits the viewport.
Do captions get indexed for SEO?
Yes. Captions are rendered as <code><figcaption></code> elements inside the iframe and are also surfaced in the <code>alt</code> attribute of the underlying <code><img></code> tag, so they are picked up by crawlers and assistive tech alike.
Can viewers download the original file?
Only when <code>enable_download=1</code> is set and the asset's sharing permissions allow it. Otherwise the viewer exposes the display variants only, never the original master.