#clippath — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #clippath, aggregated by home.social.
-
Yesterday, I posted a demo for all, showing a multi-layer wave header, #CSS only, no SVG, no extra elementss just for the visual result
Here's the demo on @codepen https://codepen.io/thebabydino/pen/YPZzmZE
Today, a massive article about the #Maths & CSS behind for Cheetah+ supporters
❇️ https://ko-fi.com/post/Wave-header-C5L525SDYE
❇️ https://www.patreon.com/anatudor/posts/wave-header-how-167777518
#web #dev #webDev #webDevelopment
#code #coding #frontend #cssShape #clipPath #cssClipPath #bezier #curve #bezierCurve #geometry -
A little thing: candy 🍬 ghost 👻 buttons, 3 techniques in one @codepen demo
https://codepen.io/thebabydino/pen/ExvNBRYDetailed explanation of the how behind in this @csstricks post https://css-tricks.com/css-ing-candy-ghost-buttons/
Bonus: a hover animated, Chrome-only version https://codepen.io/thebabydino/pen/VwzpMxV
#CSS #cssGradient #cssMask #coding #web #dev #webDev #webDevelopment #code #frontend #clipPath #cssClipPath
-
Cool concave rounding header component on @codepen: https://codepen.io/thebabydino/pen/azOgOKE
#CSS #clipPath #cssClipPath #cssMask #cssGradient #code #coding #frontend #web #dev #webDevelopment #webDev
-
Here's a little pure #CSS demo I made on @codepen a while back: clip element on #scroll https://codepen.io/thebabydino/pen/vEGBOrg
(using scroll-driven animations, so support may still be spotty)
#cssScrollAnimation #scrollAnimation #clipPath #cssClipPath #code #coding #web #dev #webDevelopment #webDev #frontend #cssAnimation #scrollEffect
-
Funky forms on @codepen https://codepen.io/thebabydino/pen/raeOWOj
Full 3D form option vs. weird 2D shape. Which do you prefer?
#CSS #3D #transform #clipPath #filter #SVG #svgFilter #code #coding #frontend #web #dev #webDev #webdevelopment
-
Because someone just hearted this demo I made over half a decade ago on @codepen:
https://codepen.io/thebabydino/pen/bGEBObR
It's a pure #CSS Platonic solids gallery. They animate on hover/ tap. All is computed, there are no magic numbers.
#Maths #3D #Geometry #trigonometry #clipPath #cssClipPath #code #frontend #web #dev #webDev #webDevelopment #coding #transform #cssTransform #css3D
-
BTW, the CSS is heavily commented. And I've changed the images to something a bit more fitting for this time of year.
https://codepen.io/thebabydino/details/WbrjrZM
And now you can tell what gave me the idea for yesterday's challenge https://mastodon.social/@anatudor/115337483292849914
#CSS #Maths #layout #cssLayout #cssGrid #trigonometry #code #coding #frontend #transform #cssTransform #cssClipPath #clipping #clipPath #containerQueries #containerQuery #webDevelopment #web #dev #webDev
-
Because this got asked on reddit https://www.reddit.com/r/css/comments/1o069yi/comment/ni8evf4/
Made a demo with various options for angled grid columns. Uses mathematical computations to ensure all fits just right all the time, regardless of viewport or number of columns.
On @codepen https://codepen.io/thebabydino/pen/WbrjrZM
Enjoy!
#CSS #Maths #layout #cssLayout #cssGrid #trigonometry #code #coding #frontend #transform #cssTransform #cssClipPath #clipping #clipPath #containerQueries #containerQuery #webDevelopment #web #dev #webDev
-
A little thing I made on @codepen.io: breathing with `shape()`
https://codepen.io/thebabydino/pen/vEEqMWo`shape()` is supported in Chrome 135+ and Safari 18.4+.
Firefox 126+ supports it for simple shapes (but not for this demo) when setting thelayout.css.basic-shape-shape.enabled to true in about:config.
#CSS #clipPath #cssClipPath #animation #cssShapes #code #coding #clipping #web #dev #webDevelopment #webDev #frontend
-
Someone asked how to create such cross-browser wave dividers that keep the same height as the width changes, so here's my take on it https://www.reddit.com/r/css/comments/1kcmabf/comment/mq5ck6m/
Live on @codepen https://codepen.io/thebabydino/pen/PwwQxdb?editors=0100
`mask` is another option, but needs an extra container and container query units, so not as well supported, plus it wouldn't be exactly the same shape.
#CSS #clipPath #cssClipPath #Sass #maths #cssMaths #code #coding #web #dev #webDevelopment #webDev #frontend
-
#tinyCSStip `clip-path` or `mask` are applied after `filter`.
This means we cannot clip/ mask, then add a `drop-shadow()` on the same element for the clipped/ masked shape.
We need to apply the `filter` on a parent of the clipped/ masked (pseudo-)element.
https://codepen.io/thebabydino/pen/BRROzw
#CSS #filter #cssFilter #clipPath #clipping #cssClipPath #cssMask #coding #frontend #web #dev #webDev #webDevelopment #code
-
Here's a quick breathing box demo with `clip-path: shape()` on @codepen.io: https://codepen.io/thebabydino/pen/ZYENVOQ
Working in Chrome 135 and Safari 18.4! 🥳🎉
#CSS #clipPath #cssClipPath #coding #web #dev #webDev #webDevelopment #code #frontend
-
I haven't had the time to do anything for this week's #CodePenChallenge yet, but here are some older card demos:
From 5+ years ago: pure #CSS 1 element bevel cards! No SVG or images save for the cat, real (semi)transparency inside borders and all.
See it on @codepen https://codepen.io/thebabydino/pen/ZEGNNQz
#clipPath #cssClipPath #code #coding #web #dev #webDev #webDevelopment #frontend #cssPattern #cssPatterns #cssGradient
-
Because I saw a @codepen demo creating a hex grid using my well over a decade old nested and reverted transforms technique to get the shape + MQs...
Here's a super simple modern #CSS grid + clip-path + mathematical functions responsive version with no breakpoints https://codepen.io/thebabydino/pen/QwWQqeR
#cssLayout #cssGrid #clipPath #hexagon #cssMaths #containerQueryUnits #code #cssVariables #coding #frontend #webDev #web #dev #webDevelopment
-
Know how border-image & border-radius don't play nice together?
(interactive https://codepen.io/thebabydino/pen/jxZyed)
#tinyCSStip there's a workaround IF corner radius ≤ border-width: use inset() clip-path + a round value!
clip-path: inset(0 round $r)
@codepen demo: https://codepen.io/thebabydino/pen/qBELJGY?editors=1100
(and yes, this is a tip I first shared on twitter over half a decade ago https://x.com/anatudor/status/1219916121341644807 )
#CSS #clipPath #cssClipPath #coding #web #dev #webDev #webDevelopment #code #frontend #borderImage #borderRadius
-
Another super old @codepen demo I redid with modern #CSS is this yummy menu https://codepen.io/thebabydino/pen/AoxZQq
CSS grid instead of absolute positioning, clip-path instead of nested skew and un-skew, CSS variables to avoid setting a separate transform chain on each item... and more!
#gridLayout #cssGrid #clipPath #clipping #cssTransforms #cssVariables #coding #code #frontend #webDevelopment #web #dev #webDev
-
Here's a little thing 🦜 I made on @codepen:
https://codepen.io/thebabydino/pen/bGXeGoa
Uses clip-path, CSS grid, variables, halftone patterns https://mastodon.social/@anatudor/112401133442879091 and more! 🌟
#CSS #gridLayout #cssGrid #SVG #filter #svgFilter #textEffect #clipPath #code #coding #frontend #webDev #web #dev #webDev
-
Here's another little something from forever ago that I've recently updated on @codepen: a circular menu!
https://codepen.io/thebabydino/pen/nKzaPQ
The code was really outdated, so I redid it to use CSS variables, trigonometry, grid, clip-path, SVG filters for the inner shadow & grain.
Hope you like it!
#CSS #cssVariables #clipPath #cssGradient #SVG #filter #svgFilter #cssGrid #gridLayout #code #coding #frontend #dev #web #webDev #webDevelopment #cssMaths #trigonometry #Maths #geometry
-
Also on the topic of circle sectors/ pie slices 🥧 - I've updated an old SO answer of mine https://stackoverflow.com/a/14185845/1397351
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
-
Ever want a pure CSS regular #polygon?
Back in 2016, I first wrote this #Sass #mixin to generate one. I've had others before, but this is the one I've kept updating it ever since and it's heavily commented.
You just need to pass it a number of vertices and an initial rotation.
@codepen demo: https://codepen.io/thebabydino/pen/mEgzxd
#CSS #clipPath #geometry #2D #code #coding #frontend #web #dev #wbDev #webDevelopment
-
How do you get a zoom effect on an `img`? So that you still have the right click `img` menu and also don't need any extra element?
Here's how on @codepen: https://codepen.io/thebabydino/pen/BaGYPPV
Prompted by coming across a demo that gets the effect with a `div` wrapped in an `overflow: hidden` parent.
#CSS #clip #clipPath #clipping #cssClipPath #zoom #zoomEffect #code #coding #frontend #web #webDev #dev #webDevelopment
-
Re https://x.com/meodai/status/1800098657020289330
If you ever want to create a regular/ star-shaped #polygon, I made a #Sass #mixin that generates them years ago
https://codepen.io/thebabydino/pen/PRMxwj/?editors=0100A heavily commented & more modern version of the regular poly mixin https://codepen.io/thebabydino/pen/mEgzxd?editors=0100
Bonus: chubby stars mixin https://codepen.io/thebabydino/pen/KLyjBx
Example of a @codepen demo using such a regular polygon mixin to create three rolling hexagons: https://codepen.io/thebabydino/pen/LYzPeGX
#CSS #geometry #maths #trigonometry #code #coding #clipPath #frontend
-
`filter: drop-shadow()` is great for non-rectangular shapes.
But there are a couple of frustrating issues:
😿 `filter` is applied before `clip-path`
➡ set `filter` on parent 🥳🎉😿 blur inconsistent with that of box/ text shadow
➡ set it to half the value 🥳🎉Resources:
✨ https://codepen.io/thebabydino/pen/BRROzw
✨ https://dbaron.org/log/20110225-blur-radius
✨ https://codepen.io/thebabydino/pen/WNPwzGg#CSS #SVG #filter #shadow #dropShadow #clipping #clipPath #code #coding #frontend #webDev #webDevelopment
-
#Development #Techniques
Improving CSS Shapes with trigonometric functions · We now have a lot of ways to work with CSS Shapes https://ilo.im/1239qq · by @DanCWilson_____
#Trigonometry #WebDevelopment #WebDev #Frontend #CSS #CssShapes #ClipPath