Robert Crocker

Craft obsessed developer who designs.

← Back to the lab

21Play / Pause Morph

II · Drawing with SVG

Path interpolation via the Motion library — play melts into pause.

Click

Source

3 files
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>CodeSandbox</title>
  </head>
  <body>
    <button>
      <svg viewBox="0 0 24 24">
        <path
          d="
            M 19,12
            L 19,12
            L 5,21
            L 5,3
            Z
          "
        />
      </svg>
    </button>
  </body>
</html>