UMD Web Components Library
    Preparing search index...

    Variable imageExpandConst

    imageExpand: ComponentRegistration = ...

    Image Expand Layout

    A layout component that presents content alongside an expandable image. The image can extend beyond the normal content boundaries to create visual impact. Ideal for showcasing featured content, hero sections, or highlighting important information with striking visuals.

    <umd-layout-image-expand>

    • content - Main content area (required, accepts: any elements)
    • image - Featured image that can expand (required, accepts: img)
    <!-- Basic image expand layout -->
    <umd-layout-image-expand>
    <div slot="content">
    <h2>Featured Research</h2>
    <p>Breakthrough discoveries in quantum computing...</p>
    </div>
    <img slot="image" src="research-lab.jpg" alt="Quantum Lab" />
    </umd-layout-image-expand>
    <!-- With rich content -->
    <umd-layout-image-expand>
    <article slot="content">
    <h1>Campus Innovation Hub</h1>
    <p>The new Innovation Hub brings together students, faculty, and industry partners...</p>
    <a href="/innovation">Learn More</a>
    </article>
    <img slot="image" src="innovation-hub.jpg" alt="Innovation Hub Interior" />
    </umd-layout-image-expand>

    1.0.0