FT
FAQ Templates

ASSET_SPEC // ANIMATED_ACCORDION

Animated AccordionFAQ template

A smooth, interactive accordion with elegant slide transitions and rotating icons.

Live_Preview_Environment

Frequently Asked Questions

When_to_Use

Choose the animated accordion for a marketing or SaaS FAQ that benefits from a polished, interactive feel. The rotating icon and smooth height transition make open and close state obvious without drawing attention away from the answer.

Source_Manifest

Source_Inspector // HTML
<!-- HTML/CSS Version -->
<style>
  .accordion-item { border-bottom: 1px solid #e5e7eb; }
  .accordion-trigger { 
    display: flex; justify-content: space-between; align-items: center; 
    width: 100%; padding: 1rem 0; cursor: pointer; background: none; border: none;
    font-size: 1.125rem; font-weight: 500; text-align: left;
  }
  .accordion-content { 
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; 
    color: #4b5563; 
  }
  .accordion-item[open] .accordion-content { max-height: 200px; padding-bottom: 1rem; }
  .icon { transition: transform 0.3s ease; }
  .accordion-item[open] .icon { transform: rotate(180deg); }
</style>

<section class="max-w-2xl mx-auto" aria-labelledby="animated-faq-title">
  <h2 id="animated-faq-title" class="text-3xl font-bold mb-6">Frequently Asked Questions</h2>
  <div class="accordion">
    <details class="accordion-item" open>
      <summary class="accordion-trigger">
        <span>How do I start my first project?</span>
        <svg class="icon" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m6 9 6 6 6-6"/></svg>
      </summary>
      <div class="accordion-content">
        <p>Click the "New Project" button in your dashboard and follow the onboarding wizard to choose a template.</p>
      </div>
    </details>
    <details class="accordion-item">
      <summary class="accordion-trigger">
        <span>What integrations are supported?</span>
        <svg class="icon" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m6 9 6 6 6-6"/></svg>
      </summary>
      <div class="accordion-content">
        <p>We currently support Slack, GitHub, and Discord, with more coming soon.</p>
      </div>
    </details>
  </div>
</section>
READ_ONLY