home.social

#cssgradient — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #cssgradient, aggregated by home.social.

  1. Outer + inner border for hue ring - 3 methods with a single div, no pseudos, all described in this public Ko-fi post: ko-fi.com/post/Outer--inner-bo

    Live demo on @codepen codepen.io/thebabydino/pen/RNr

    Best part? In practice, you'll need to use more than one because none works cross-browser.

    #CSS #mask #cssGradient #coding #conicGradient #code #frontend #web #dev #webDev #webDevelopment

  2. Remake of an old, old @codepen animation with 2025 #CSS codepen.io/thebabydino/pen/jOZ

    Now using `conic-gradient()` + `mask` instead of an SVG segments ring image. CSS `grid` for layout. Container query units so ring sizes adapt to number of rings (passed to CSS via a var) & available space. And more, check it out! 🐱

    Original code preserved in Pen description for web history.

    #conicGradient #cssGradient #code #coding #frontend #cssGrid #cssLayout #web #dev #webDev #webDevelopment #containerQueries

  3. I made a little thing on @codepen :pure #CSS #scroll controlled swipe transition codepen.io/thebabydino/pen/azO

    Note how the swipe always clockwise, regardless of scroll direction and how the text fades in after the swipe in.

    Inspiration x.com/avanderpotte/status/1923
    (via @codrops motion highlights roundup)

    cc @bramus

    #scrollAnimation #code #coding #frontend #cssGradient #cssMask #conicGradient #cssMaths #maths #scrollEffect #cssGrid #web #dev #webDev #webDevelopment

  4. 2️⃣ 1076 ♥️ Simplest inner glow card animation codepen.io/thebabydino/pen/WNV - a super simple pure #CSS demo I made in a few minutes to answer a reddit question and never expected would even get noticed much. It was my only 2024 demo to make into the most hearted 100 Pens of the year on @codepen.

    #cssFilter #borderImage #glow #code #cssGradient #conicGradient #coding #web #dev #webDevelopment #webDev #frontend

  5. Saw a @codepen demo using... a lot! of elements (screen 1) and quite a bit of #CSS to create a simple loader, so I forked it and made a 1 div version (screen 2) in under 30 CSS declarations (gradients, mask, variables to only change --c0 and --c1 values for 2nd loader): codepen.io/thebabydino/pen/Pwo

    #cssMask #cssGradient #conicGradient #maths #trigonometry #Sass #loader #web #dev #webDev #webDevelopment #code #coding #frontend #cssAnimation

  6. Know the animated 🌈 border + glow effect that's all the rage? It's normally done by adding an opaque cover on top of two 🌈 layers.

    But what if we wanted a (semi)transparent background within the border? It's possible with pure #CSS!

    Heavily commented on @codepen codepen.io/thebabydino/pen/KwP

    #cssGradient #conicGradient #code #web #dev #webDev #webDevlopment #frontend #coding #cssAnimation #rainbow

  7. Because somebody asked how to fix an animated border glow effect on scroll entry (reddit.com/r/css/comments/1i1t), here's my take on @codepen

    codepen.io/thebabydino/pen/raB

    Four options in the demo. Well, two, the last two are just enhancing the second.

    #CSS #SVG #filter #svgFilter #code #web #dev #webDev #webDevelopment #coding #frontend #cssGradient #conicGradient #glow

  8. #tinyCSStip Want to avoid ugly checkerboard edges when pattern size depends on viewport?

    Round it to be a multiple of 2px so every square edge is an int number of pixels!

    --s: round(10vmin, 2px);
    background:
    repeating-conic-gradient(red 0% 25%, tan 0% 50%)
    0 0/ var(--s) var(--s)

    #CSS #code #coding #frontend #gradient #web #dev #webDev #webDevelopment #cssGradient #conicGradient

  9. Made this loader codepen.io/thebabydino/pen/Bay half a decade ago. Then it only worked in Chromium browsers with the Experimental Web Platform features flag enabled.

    As of 2024, it works cross-browser, no flags needed. Since someone hearting it reminded me of its existence, updated support info.

    #CSS #code #coding #frontend #web #webDev #dev #webDevelopment #mask #cssMask #cssGradient #conicGradient #cssVariables #cssAnimation

  10. Simplest gradient border buttons (with border-radius) codepen.io/thebabydino/pen/vYo

    Multiple cases, each just a few lines of code:
    ✨ solid background
    ✨ (semi)transparent background
    ✨ (semi)transparent background for input[type=button] (so no pseudos allowed)

    #CSS #cssGradient #cssMask #masking #code #coding #frontend #web #dev #webDev #webDevlopment

  11. Also on the topic of circle sectors/ pie slices 🥧 - I've updated an old SO answer of mine stackoverflow.com/a/14185845/1

    This goes through the simplest code possible in 2024 for a few cases (equal slices or not, interactive/ with content or not).

    #CSS #cssGradient #Sass #conicGradient #clipPath #cssMaths #Maths #geometry #trigonometry #code #coding #frontend #web #dev #webDev #webDevelopment

  12. So this very subtle pure #CSS pattern got picked on @codepen codepen.io/thebabydino/pen/vYq

    ¯\_(ツ)_/¯

    (only made it to provide an answer to a question someone asked... and I almost answered with "are you sure you uploaded the right image?" because the lines were so subtle I missed them at first)

    #pattern #cssPattern #gradient #cssGradient #conicGradient #code #coding #frontend #web #webDev #dev #webDevelopment

  13. I've just seen a bunch of my demos "trending" on @codepen.

    ✨ stroke shadow wave 🌊
    ✨ no matrix gooey effect
    ✨ slice 🗡️
    ✨ here is real magic 🧞
    ✨ slice & offset 🔪
    ✨ dizzy 3D 🥴
    ✨ blended layers
    ✨ split text effect
    ✨ realistic grainy shadows

    ...just on the first 5 pages! 🤯

    #SVG #CSS #filter #svgFilter #3D #transform #cssTransforms #cssGradient #code #coding #web #webDev #webDevelopment #frontend

  14. #tinyCSStip Avoid ugly edges for CSS gradient circles!

    ❌ DON'T 😭
    (abrupt change, no semi-transparent pixels at the edge, jagged look)
    radial-gradient(circle, #202 5em, #0000 0)

    ✅ DO 😻
    (semi-transparent edge pixels, smooth look)
    radial-gradient(5em, #202 calc(100% - 1px), #0000)

    #css #cssGradient #cssTricks #jagged #jaggedEdge #smooth #smoothEdge #code #coding #frontend #web #webDev #dev #webDevelopment