Nice things with SVG
51–60 of 112 posts
Re: Nice things with SVG
#52Earlier quoted context omitted.
Which book are you referring to?
Probably “SVG Animations” available through O’Reilly. It is from 2017. While many of the frameworks used have come and gone; there are a few stable concepts. If you can get it on sale, I’d recommend. Full price is a hard sell.
Re: Nice things with SVG
#53Complex animated SVG is fun to roll until you get into the weeds of SMIL and Safari bricks your phone for missing a leading 0 on a float or some random nonsense.
Re: Nice things with SVG
#54Earlier quoted context omitted.
Which book are you referring to?
Probably “SVG Animations” available through O’Reilly. It is from 2017. While many of the frameworks used have come and gone; there are a few stable concepts. If you can get it on sale, I’d recommend. Full price is a hard sell.
SVG Essentials: https://www.oreilly.com/library/view/svg-essentials-2nd/9781...
SVG Text Layout: https://www.oreilly.com/library/view/svg-text-layout/9781491...
The fact there’s a book on just text layout helped me learn how much depth there is in SVG.
Re: Nice things with SVG
#55svg based games, wen?
Re: Nice things with SVG
#56For anyone who is using creatively using JS to create SVG dynamically and looking for work, DM me!
Re: Nice things with SVG
#57>height="20" What fresh hell is this?
HTML attribute: height="20"
CSS property: height: 20px;
JS statement: element.style.height = "20px";
Re: Nice things with SVG
#58One fun thing that can be done with SVG files: you can use entities in an inline DTD to define constants to be shared across different places in the file. You can see some great examples of this in the SVGs in David Ellsworth's "Squares in Squares" page [0]. The major browsers have no issues with this, though note that some tools like Inkscape won't parse the DTD nor expand the entities. [0] https://kingbird.myphotos…
Re: Nice things with SVG
#59SVG feels like a very underexplored and underused territory. You can do so many things with it. It really depends on your imagination. But you’ll possibly need to “hardcore” a lot of stuff, so yeah, depends on the use case as well.
Re: Nice things with SVG
#60Made a small silly game recently just for fun, using mostly CSS animated SVG tiles for rendering: https://pipeline-panic.vercel.app/