I have a webm video made somewhat like this:
- Import .ttf or .otf font into Adobe Illustrator (AI).
- Copy/paste individual font glyph from AI to Photoshop.
- Create layers of the font glyph for animation in After Effects (AE) next.
- Animate the glyph in AE.
- Generate a
.webm
file from the AE animation.
The final result is basically this:
I would like to make this somewhat feel interactive if possible, so when you hover it, it changes color to purple (animates color from black to purple). Sort of like these glyphs which are just font glyphs in HTML with CSS transitions on hover:
Is anything like that possible in this context, using the .webm format? (I’ve never used .webm, or even video really, much before).
- Render/play video on HTML5 canvas at runtime, and somehow animate the black pixels to be purple on hover? (Is anything like that feasible?).
- Maybe the .webm format is like an SVG in some ways, and I can just set some color variable on hover, after the .webm file has already been created? Like set some variables at runtime in JS or CSS.
- Maybe I can do some CSS overlay/blend-mode magic, to create the purple effect on hover.
- Other things?
Wondering if there is any approach to make this a reality.