13 comments

  • paulirish1 day ago
    I love playful interaction too, but you can get all this for free: SVGs are natively interactive.<p>Here&#x27;s your demo in 45 lines of SVG and CSS: <a href="https:&#x2F;&#x2F;codepen.io&#x2F;paulirish&#x2F;pen&#x2F;gbOZXJp" rel="nofollow">https:&#x2F;&#x2F;codepen.io&#x2F;paulirish&#x2F;pen&#x2F;gbOZXJp</a>
  • yomielu1 day ago
    Awesome work! Not sure if this is intentional but it looks like the (lack of) contrast on the text vs background color is making it hard to read anything on the landing page.
  • simlevesque1 day ago
    This example doesn&#x27;t seem to work, I hover it and nothing happens, in incognito, chrome latest: <a href="https:&#x2F;&#x2F;svggles.vercel.app&#x2F;?tab=Documentation%2FHover%2FAnimate" rel="nofollow">https:&#x2F;&#x2F;svggles.vercel.app&#x2F;?tab=Documentation%2FHover%2FAnim...</a>
    • nartho1 day ago
      You need to hover the heart in the middle, not just the card.
  • tracker121 hours ago
    Depending on what you&#x27;re doing, I find SVG manipulation in React to come out pretty well. I&#x27;ve used it for overlays on scanned documents and basic charts without much issue at all.
  • khaki541 day ago
    Did you consider using lottie and its interactivity? What were the tradeoffs?
  • hersko1 day ago
    Your landing page made my 9 year old laugh. Good work!
  • abdulyki1 day ago
    Looks cool but isn&#x27;t this just using gsap and having a wrapper around it?
  • westurner1 day ago
    MDN docs &gt; SVG and CSS: <a href="https:&#x2F;&#x2F;developer.mozilla.org&#x2F;en-US&#x2F;docs&#x2F;Web&#x2F;SVG&#x2F;Tutorials&#x2F;SVG_from_scratch&#x2F;SVG_and_CSS" rel="nofollow">https:&#x2F;&#x2F;developer.mozilla.org&#x2F;en-US&#x2F;docs&#x2F;Web&#x2F;SVG&#x2F;Tutorials&#x2F;S...</a>
  • ckemere1 day ago
    Doesn&#x27;t seem to do anything in firefox either.
    • jazzcomputer1 day ago
      Try hovering over the symbols on the card - though I couldn&#x27;t get the morph one to work on Firefox
  • westurner1 day ago
    Src: <a href="https:&#x2F;&#x2F;github.com&#x2F;shantinghou&#x2F;interactive-illustrations" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;shantinghou&#x2F;interactive-illustrations</a>
  • 1ilit1 day ago
    looks cool, you should probably gitignore some of the dirs there though
    • ge961 day ago
      Reminds me when I was new to dev, I committed and pushed node_modules up ahh good times
      • 1ilit1 day ago
        been there, done that
  • recursive1 day ago
    It seems unusual to make the package name so different from the project name.<p>Also, the instructions for converting svg to react component work sometimes. It won&#x27;t work if your svg has any style attributes for example. React also warns on some valid svg attributes, such as this one.<p><pre><code> &lt;rect x=&quot;11&quot; y=&quot;11&quot; width=&quot;8&quot; height=&quot;8&quot; stroke=&quot;green&quot; clip-path=&quot;circle() view-box&quot; &#x2F;&gt; </code></pre> I&#x27;ve spent at least a day cleaning up after devs who just dropped inline SVG content into react components without checking whether it works. If you actually had a reliable way of embedding SVG in JSX in such a way that it worked with react, I might have use for it on occasion.<p>The given code example is missing a right angle brace on the `&lt;svg` line.
    • cAtte_1 day ago
      yeah, not sure why anyone would copy-paste SVG as JSX when SVGR exists: <a href="https:&#x2F;&#x2F;react-svgr.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;react-svgr.com&#x2F;</a>