Aspect Ratio
Displays content within a desired ratio.
Features
-
Accepts any custom ratio.
Import
import { AspectRatio } from 'qwik-primitives';
Anatomy
Import all parts and piece them together.
import { component$ } from '@builder.io/qwik';
import { AspectRatio } from 'qwik-primitives';
const AspectRatioDemo = component$(() => {
return (
<AspectRatio.Root>
<AspectRatio.Content />
</AspectRatio.Root>
);
});
API Reference
Root
Contains all the parts of an aspect ratio. This component is based on the div
element.
Content
Contains the content you want to constrain to a given ratio. This component is based on the div
element.
Examples
Iframe embed
You can limit to a certain ratio any content, for example, image or inline frame element.
import { component$ } from '@builder.io/qwik';
import { AspectRatio } from 'qwik-primitives';
const AspectRatioDemo = component$(() => {
return (
<div style={{ width: '18.75rem', overflow: 'hidden' }}>
<AspectRatio.Root ratio={16 / 9}>
<AspectRatio.Content>
<iframe
src="https://www.youtube.com/embed/2yJgwwDcgV8?si=KwBAFYZpeWUf3EOA"
title="YouTube video player"
style={{ objectFit: 'cover', height: '100%', width: '100%', border: 'none' }}
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
/>
</AspectRatio.Content>
</AspectRatio.Root>
</div>
);
});