MiN8T All Insights

How to Use the AMP Carousel Block

M
MiN8T Team
Email Engineering

1 What is the Carousel Block?

The AMP Carousel block lets recipients swipe through multiple images directly inside their email. It's built on AMP's <amp-carousel> component and works in Gmail, Yahoo Mail, Mail.ru, FairEmail, and AOL.

Use cases:

i

In email clients that don't support AMP, the carousel renders as a static HTML fallback showing the first image (or all images stacked vertically).

2 Adding Slides

Drag the AMP Carousel block from the AMP section of the block palette into a container.

Per-Slide Configuration

Each slide has:

Add more slides with the "+" button. Remove or reorder slides via the slide management panel. There's no hard limit on slide count, but 3–8 slides is optimal for engagement.

3 Carousel Settings

4 Thumbnails

The carousel can display thumbnail navigation below the main slides:

5 How It Exports

MiN8T generates dual output:

AMP Version

<amp-carousel type="slides" width="600" height="300"
              layout="responsive" loop autoplay delay="3000">
  <amp-img src="slide1.jpg" width="600" height="300"
           layout="responsive" alt="Product front"></amp-img>
  <amp-img src="slide2.jpg" width="600" height="300"
           layout="responsive" alt="Product side"></amp-img>
</amp-carousel>

HTML Fallback

For non-AMP clients, the first slide is rendered as a static image. The amp-carousel-0.2.js script is automatically injected into the AMP document head.

!

The carousel is interactive only in AMP-supporting email clients. In Outlook, Apple Mail, and other non-AMP clients, recipients see the static fallback image. Design your first slide to be the most important.

6 Next Steps

Last updated: April 2026. All details verified against MiN8T's actual codebase implementation.