Fluid Pixel Animated Cards

Fluid Pixel Animated Cards

Grid of 4 responsive cards featuring unique, mathematically generated fluid pixel animations powered by Canvas, Fractal Brownian Motion and Value Noise.

<div class="pixel-cards-wrapper">
 <section class="pixel-cards-grid">
  <!-- Card 1 -->
  <div class="pixel-card card-white">
   <div class="card-graphic graphic-full">
    <canvas class="pixel-canvas" data-color="#ff4a00" data-shape="wave">
    </canvas>
   </div>
   <div class="card-content flex-col-between">
    <div class="spacer">
    </div>
    <div>
     <div class="logo-icon text-black mb-4">
      <svg fill="currentColor" height="24" viewbox="0 0 24 24" width="24">
       <path d="M4 8h16v2H4zm0 6h16v2H4z">
       </path>
      </svg>
     </div>
     <h2 class="serif-title text-black">
      Engineering
      <br/>
      Systems That Think
      <br/>
      Clearly.
     </h2>
    </div>
   </div>
  </div>
  <!-- Card 2 -->
  <div class="pixel-card card-blue">
   <div class="card-graphic graphic-full">
    <canvas class="pixel-canvas" data-color="#8ba2ff" data-shape="pill">
    </canvas>
   </div>
   <div class="card-content flex-col-between">
    <h2 class="sans-title text-blue-dark">
     Turning
     <br/>
     Complexity into
     <br/>
     Usable
     <br/>
     Systems.
    </h2>
    <div class="logo-and-text">
     <div class="logo-icon text-white mb-4">
      <svg fill="currentColor" height="24" viewbox="0 0 24 24" width="24">
       <path d="M4 8h16v2H4zm0 6h16v2H4z">
       </path>
      </svg>
     </div>
     <p class="small-text text-white">
      We research, prototype, and deploy technology that works in the real world not just demos.
     </p>
    </div>
   </div>
  </div>
  <!-- Card 3 -->
  <div class="pixel-card card-dark">
   <div class="card-graphic graphic-full">
    <canvas class="pixel-canvas" data-color="#ccff00" data-shape="sphere">
    </canvas>
   </div>
   <div class="card-content flex-col-between">
    <div class="spacer">
    </div>
    <div>
     <div class="logo-icon text-lime mb-4">
      <svg fill="currentColor" height="24" viewbox="0 0 24 24" width="24">
       <path d="M4 8h16v2H4zm0 6h16v2H4z">
       </path>
      </svg>
     </div>
     <h2 class="sans-title text-white">
      Architecting
      <br/>
      Data For Scale.
     </h2>
     <p class="small-text text-gray">
      Our infrastructure handles millions of events per second with zero latency.
     </p>
    </div>
   </div>
  </div>
  <!-- Card 4 -->
  <div class="pixel-card card-purple">
   <div class="card-graphic graphic-full">
    <canvas class="pixel-canvas" data-color="#ffffff" data-shape="flow">
    </canvas>
   </div>
   <div class="card-content flex-col-between">
    <h2 class="sans-title text-lime">
     Designing
     <br/>
     the Next Era
     <br/>
     of Web.
    </h2>
    <div class="logo-and-text">
     <div class="logo-icon text-lime mb-4">
      <svg fill="currentColor" height="24" viewbox="0 0 24 24" width="24">
       <path d="M4 8h16v2H4zm0 6h16v2H4z">
       </path>
      </svg>
     </div>
     <p class="small-text text-lime">
      We prioritize human-centric experiences backed by solid computational logic.
     </p>
    </div>
   </div>
  </div>
 </section>
</div>