Let's Talk About the Fear
When most people first hear about AI, the conversation often goes one of two ways:
- "AI is going to replace artists, writers, and designers."
- "Just ask AI to do it for you."
Both of these frames have something in common — they remove you from the equation. And that's where the fear comes from. It's a fair fear. But it's based on a specific, narrow way of using the tool.
A person with a hammer does.”
AI is a hammer. A very fast, very capable hammer. But it has no taste, no lived experience, no vision. It only responds to yours. The question isn't "will AI replace me?" — it's "how do I use this thing to do more of what I actually want to do?"
The "wrong" way to use AI — for most people — is outsourcing your thinking entirely. Paste in a task, accept the output, call it done. That's when AI flattens creativity. And yes, it can feel threatening when used that way.
The "right" way is a conversation. You bring the concept, the taste, the judgment. AI brings speed, options, and technical execution. You stay in charge of the direction.
What You're Building Today
You're going to build a live web animation — a logo that morphs into a face and back — hosted for free on GitHub Pages. It will look like this:
- A bold geometric logo (black, white, and red)
- 2 seconds after the page loads, the logo animates into a face
- The face holds, then reverses back to the logo
- No buttons, no UI — just pure visual storytelling
Along the way, you'll use AI as a collaborator. You'll give it direction. You'll push back when it gets something wrong. You'll make the creative calls. The AI handles the code syntax. You handle the vision.
Human First — Always
Before you write a single line of code or type a single prompt, you need to do the most important thing: have an idea.
AI cannot give you this. It can give you variations of things that already exist, mashed together in new ways. Your original idea — your brand, your aesthetic, your intention — that's the raw material AI needs to be useful.
Your turn — answer these before you start:
- What's the name or concept of your brand / project?
- What 3 words describe the feeling or vibe you want?
- What colors are you working with?
- What letters, shapes, or symbols feel right to you?
- What would it mean for your logo to "come alive"? What would it become?
Write these down. These are your creative brief. Everything you say to AI should serve this brief.
Set Up Your Tools
Create a GitHub account
Go to github.com and sign up for a free account. GitHub is where your project will live and be published to the web.
Create a new repository
Click the + icon → New repository. Give it a name (e.g. my-logo-animation). Set it to Public and check Add a README file. Click Create repository.
Enable GitHub Pages
In your repo, go to Settings → Pages. Under Source, select main branch and / (root). Click Save. Your site will be live at https://yourusername.github.io/your-repo-name/
Pick your AI tool
Use any AI assistant you have access to — Perplexity, ChatGPT, Claude, Gemini, etc. You'll be having a back-and-forth conversation with it, not just asking it one question.
Build It — With AI as Your Co-Pilot
Here's the key principle: you direct, AI codes. You're the creative director. AI is the fast developer who can implement your instructions without needing lunch breaks.
Design your logo in SVG
Start a conversation with your AI tool. Open with your creative brief. Something like:
I want to build an SVG logo for a brand called [YOUR NAME].
The vibe is [YOUR 3 WORDS]. The colors are [YOUR COLORS].
The logo should feature the letters [X] and [Y] as bold geometric shapes.
No gradients. Flat vector only. Give me an HTML file with an inline SVG
that I can open in a browser.
When it responds, open the file in your browser. You will probably not love it. That's fine — this is where your job starts.
Iterate like a director
Look at what AI gave you and make specific observations. Avoid vague feedback like "make it better." Instead, be precise:
- "The letter I needs to be further left and have pointed tips top and bottom"
- "The crossbar of the T should have arrowhead ends"
- "The whole logo needs more breathing room — scale everything down 10%"
Each round, AI refines. You review. You redirect. This back-and-forth is the skill you're building — it's the same skill used in professional design, film direction, and product management.
Add the animation
Once you're happy with the logo, ask AI to add a morph animation using Anime.js. Give it a specific transformation target — what should the logo become?
Now I want to add an animation. 2 seconds after the page loads,
the logo shapes should morph into a face using Anime.js SVG path morphing.
The [I shape] becomes the left eyebrow. The [T stem] becomes the nose.
The [crossbar] becomes the right eyebrow. Eyes, nose, and mouth should
appear from the existing shapes. Hold for 1.5 seconds then reverse.
No user interface. Use anime.timeline().
Tune the face
The face coordinates will likely need adjustment. This is normal — SVG coordinate space is abstract. Ask AI to make specific changes:
- "Make the brows sharper and more angled, like war paint"
- "Replace the smooth mouth curve with a jagged zigzag"
- "The eyes should be sharp diamond shapes, not ellipses"
Keep going until the face feels like your face — not just whatever AI defaulted to.
Publish
Copy your final index.html content into your GitHub repo. Go to your repo → click the file → click the pencil icon to edit → paste your code → commit. Wait ~60 seconds and visit your GitHub Pages URL. You shipped something.
Reflect on What Just Happened
You used AI to build something real. But look at what AI didn't do:
- It didn't pick your brand name
- It didn't choose your colors or aesthetic
- It didn't decide the logo should turn into a face
- It didn't know when the face looked wrong
- It didn't know when to stop iterating
Every single one of those decisions was yours. AI was the hands. You were the mind.
You just proved that doesn't have to happen.”
Discussion questions — talk with a partner or write your answers:
- At what point in the process did you feel most "in control"? When did you feel least in control?
- If you had tried to write all this code yourself from scratch, what would have been different about the experience?
- Can you think of a creative field where AI-as-collaborator would be most useful? Most dangerous?
- What's one thing AI suggested that you changed or rejected? Why?
- How is this different from "AI doing it for you"?
Go Further
The logo animation is just the start. Here's what you can do with the same skills:
- Apply it to any brand — swap the shapes and colors for a band, sports team, podcast, or business
- Change the transformation — instead of a face, morph into an animal, a map, a symbol
- Add sound — trigger a short audio clip when the face appears using the Web Audio API
- Make it interactive — trigger the animation on click or scroll instead of a timer
- Build a full brand page — expand the single page into a landing page for your project
- Generate logo variations — use an AI image tool with your existing logo as a style reference to explore merchandise, stickers, or alternate colorways
In every case, the same rule applies: you bring the idea, AI brings the execution speed. The creativity is always yours to protect.