Search
CSS Tricks That Use Only One Gradient
11.10.2024
CSS gradients have been so long that there’s no need to rehash what they are and how to use them. You have surely encountered them at some point in your front-end journey, and if you follow me, you also …
CSS Tricks That Use Only One Gradient originally published on CSS-Tricks, which is part...
Sam Altman-Affiliated Meanwhile Group Introduces Bitcoin Private Credit Fund – Institutional Investment Rising?
8.12.2023
Source: AdobeStock / jirsak Bitcoin life insurance innovator Meanwhile Group, backed by notable figures like Sam Altman and Gradient Ventures, has unveiled a new private credit fund denominated in Bitcoin. The closed fund aims to provide investors with a “conservative” yield in Bitcoin...
Bitcoin Life Insurance Startup Raises $19M in Seed Rounds Led by Sam Altman and Gradient Ventures
7.6.2023
Meanwhile, a life insurance company that uses bitcoin, has accumulated $19 million through two seed funding rounds. The first round was led by Openai CEO Sam Altman and former Stripe executive Lachy Groom, while Google’s Gradient Ventures took charge of the second round. Crypto Startup...
Recreating the Gradient Mask Hover Effect from Evervault
17.5.2023
A recreation of the hover effect seen on the customer grid on the Evervault website
Different Ways to Get CSS Gradient Shadows
10.2.2023
It’s a question I hear asked quite often: Is it possible to create shadows from gradients instead of solid colors? There is no specific CSS property that does this (believe me, I’ve looked) and any blog post you find about …
Different Ways to Get CSS Gradient Shadows originally published...
Making Static Noise From a Weird CSS Gradient Bug
18.11.2022
What I will be doing here is kind of an experiment to explore tricks that leverage a bug with the way CSS gradients handle sub-pixel rendering to create a static noise effect — like you might see on a TV with no signal.
Making Static Noise From a Weird CSS Gradient Bug originally published...
Collective #737
10.11.2022
Conditionally Adaptive CSS * Animated Gradient Text * Marten * Huge type on the web
Some Links About CSS Gradients
2.11.2022
Every once in a while, the blogging zeitgiest seems to coalesce around a certain topic and it’s like the saved articles in my bookmarks folder are having a conversation. The conversation sitting in there now is all about CSS Gradients …
Some Links About CSS Gradients originally...
Fancy Image Decorations: Masks and Advanced Hover Effects
21.10.2022
Welcome to Part 2 of this three-part series! We are still decorating images without any extra elements and pseudo-elements. I hope you already took the time to digest Part 1 because we will continue working with a lot of gradients …
Fancy Image Decorations: Masks and Advanced Hover Effects...
Binance CEO Changpeng Zhao Believes Decentralization Is Part of a ‘Gradient Scale’
10.10.2022
Changpeng Zhao, founder and CEO of Binance, the biggest cryptocurrency exchange by volumes traded, pondered the importance of decentralization and the relation it has with security and freedom. Zhao stated that there are several aspects of decentralization and that this is part of a gradient scale...
How to Recreate Stripe’s Lava Lamp Gradient with Three.js
26.9.2022
A video coding session where you’ll learn how to recreate the lava lamp like gradient from Stripe
How to Create Wavy Shapes & Patterns in CSS
26.9.2022
The wave is probably one of the most difficult shapes to make in CSS. We always try to approximate it with properties like border-radius and lots of magic numbers until we get something that feels kinda close. And that’s before …
How to Create Wavy Shapes & Patterns in CSS originally...
CSS Checkerboard Background… But With Rounded Corners and Hover Styles
20.9.2022
On one hand, creating simple checkered backgrounds with CSS is easy. On the other hand, though, unless we are one of the CSS-gradient-ninjas, we are kind of stuck with basic patterns.
At least that’s what I thought while staring at …
CSS Checkerboard Background… But With Rounded...
Making a Real-Time Clock With a Conic Gradient Face
19.9.2022
Gradients have been a part of the CSS spectrum for quite some time now. We see a lot of radial and linear gradients in a lot of projects, but there is one type of gradient that seems to be a …
Making a Real-Time Clock With a Conic Gradient Face originally published on CSS-Tricks, which...
How I Made a Pure CSS Puzzle Game
9.9.2022
I recently discovered the joy of creating CSS-only games. It’s always fascinating how HTML and CSS are capable of handling the logic of an entire online game, so I had to try it! Such games usually rely on the ol’ …
How I Made a Pure CSS Puzzle Game originally published on CSS-Tricks, which...
Using Different Color Spaces for Non-Boring Gradients
7.2.2022
A little gradient generator tool from Tom Quinonero. You’d think fading one color to another would be an obvious, simple, solved problem — it’s actually anything but!
Tom’s generator does two things that help make a gradient better:
You
…
Using Different Color Spaces...
Diagonal Stripes Wipe Animation
30.11.2021
I was playing this game on Apple Arcade the other day called wurdweb. It’s a fun little game! Little touches like the little shape dudes that walk around the screen (but otherwise don’t do anything) give it a lot …
The post Diagonal Stripes Wipe Animation appeared first...
My Struggle to Use and Animate a Conic Gradient in SVG
8.7.2021
The wonderful company I work for, Payoneer, has a new logo, and my job was to recreate it and animate it for a loader component in our app. I’ll explain exactly how I did it, share the problems I …
The post My Struggle to Use and Animate a Conic Gradient in SVG appeared first on CSS-Tricks....
The “Gray Dead Zone” of Gradients
1.3.2021
Erik D. Kennedy notes an interesting phenomenon of color gradients. If you have a gradient between two colors where the line between them in the color space goes through the zero-saturation middle, you get this “gray dead zone” in …
The post The “Gray Dead Zone”...
Animating a CSS Gradient Border
8.2.2021
This little trick for gradient borders is super useful:
.border-gradient {
border: 5px solid;
border-image-slice: 1;
border-image-source: linear-gradient(to left, #743ad5, #d53a9d);
}
Here’s some basic demos from our article on the subject. Sephanie Eckles was sharing around the idea...