Aspect Ratio

Displays content within a desired ratio.

  • Accepts any custom ratio.

import { AspectRatio } from 'qwik-primitives';

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>
  );
});

Contains all the parts of an aspect ratio. This component is based on the div element.

Contains the content you want to constrain to a given ratio. This component is based on the div element.

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>
  );
});