Skip to main content

Getting started

Minimal image viewer embed with default controls.

image

Preview

Props & interactive options

PropTypeDefaultDescriptionTry it
enable_downloadurl param0Expose a download button for each image.
enable_fullscreenurl param1Enable 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

HTML
<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>&lt;figcaption&gt;</code> elements inside the iframe and are also surfaced in the <code>alt</code> attribute of the underlying <code>&lt;img&gt;</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.