Search
Kava Swap Lists on AscendEX
30.8.2021
PRESS RELEASE. AscendEX, a global digital asset trading platform with a comprehensive product suite, is thrilled to announce the listing of the Kava Swap token (SWP) under the pair USDT/SWP on Aug 31 at 1 p.m. UTC. In celebration of the SWP listing, AscendEX will work with the team at Kava Swap...
Exploring the CSS Paint API: Blob Animation
30.8.2021
After the fragmentation effect, I am going to tackle another interesting animation: the blob! We all agree that such effect is hard to achieve with CSS, so we generally reach for SVG to make those gooey shapes. But …
The post Exploring the CSS Paint API: Blob Animation appeared first...
Safemoon Product Launch Hits a Snag, Project Bombarded by Accusations, Community Deflects Criticism
30.8.2021
A cryptocurrency project called Safemoon has been trending in forums and social media in recent times, as the crypto asset team promised a few new products, but the team claims that the launch has seen difficulties. This weekend, a post published to the subreddit forum r/cryptocurrency claims...
Binance Discontinues Support for Norwegian Krone Pairs, Payments and Language
28.8.2021
Cryptocurrency exchange Binance is discontinuing certain offerings in Norway. The news comes amid regulatory pressure around the world which the global trading platform is working to address. The company is also dropping Norwegian from its website’s language options. Crypto Exchange Binance...
My tiny side project has had more impact than my decade in the software industry
27.8.2021
That’s a heartwrenching title from Michael Williamson. I believe it though. It’s kinda like a maximized version of the blogging phenomenon where if you work on a post for weeks it’ll flop compared to a post that’s some dumb 20-minute …
The post My tiny side project...
The Fixed Background Attachment Hack
27.8.2021
What options do you have if you want the body background in a fixed position where it stays put on scroll? background-attachment: fixed in CSS, at best, does not work well in mobile browsers, and at worst is not even …
The post The Fixed Background Attachment Hack appeared first...
Developers and Designers Work on a Single Source of Truth with UXPin
27.8.2021
(This is a sponsored post.)
There is a conversation that has been percolating for as long as I’ve been in the web design and development industry. It’s centered around the conflict between design tools and development tools. The final …
The post Developers and Designers Work on...
Designing for the Unexpected
27.8.2021
When I think about what front-end development really is and feels like, this is at the heart of it: designing around a huge set of unknowns, and really embracing that notion as a strength of the web rather …
The post Designing for the Unexpected appeared first on CSS-Tricks. You can support...
Some Articles About Accessibility I’ve Saved Recently III
26.8.2021
The perfect link — Rian Rietveld defines them: “When you click on them, they take you somewhere else.” Not much code in here (we’ve got that), just a lot of practical accessibility advice. For example, the alt text
…
The post Some Articles About Accessibility I’ve Saved...
How I Made a Generator for SVG Loaders With Sass and SMIL Options
26.8.2021
While learning Vue.js, I started building free web tools that involved the exploration of SVG, with the goal of learning something about both! Let’s take a look at one of those tools: a generator that makes SVG loaders and …
The post How I Made a Generator for SVG Loaders With Sass and SMIL...
One Way to Convert Code Indentation
26.8.2021
A question:
If you copy a code sample that uses two-space indentation and you want to convert it to four-space indentation, what’s the *fastest* and easiest option?
Matt Stauffer, Twitter
I wrote about doing this in Sublime Text a …
The post One Way to Convert Code Indentation...
Stealing Game Animation Techniques to Engage Users
25.8.2021
Today’s websites are overflowing with animations—often too many. They get in the way of the content and slow down our busy users. But at the same time: they’re wonderful. They bring websites to life, are fun to implement and …
The post Stealing Game Animation Techniques to Engage Users...
Scrollbar Reflowing
24.8.2021
This is a bit of advice for developers on Macs I’ve heard quite a few times, and I’ll echo it: go into System Preferences > General > Show scroll bars and set to always. This isn’t about you, it’s …
The post Scrollbar Reflowing appeared first on CSS-Tricks....
Architecting With Next.js
24.8.2021
(This is a sponsored post.)
Free event hosted by Netlify coming up next week (Wednesday, August 25th): Architecting with Next.js. It’s just a little half-day thing. No brainer.
Join us for a special event where we’ll highlight business
…
The post Architecting With Next.js...
Introduction to the Solid JavaScript Library
24.8.2021
Solid is a reactive JavaScript library for creating user interfaces without a virtual DOM. It compiles templates down to real DOM nodes once and wraps updates in fine-grained reactions so that when state updates, only the related code runs.
This …
The post Introduction to the Solid...
Detecting Media Query Support in CSS and JavaScript
23.8.2021
You can’t just do @media (prefers-reduced-data: no-preference) alone because, as Kilian Valkhof says:
[…] that would be false if either there was no support (since the browser wouldn’t understand the media query) or if it was supported but the
…
The post...
Native JavaScript Routing?
23.8.2021
We can update the URL in JavaScript. We’ve got these APIs:
// Adds to browser history
history.pushState({}, "About Page", "/about");
// Doesn't
history.replaceState({}, "About Page", "/about");
JavaScript is also capable of replacing any content in the DOM....
Walmart is seeking a crypto product lead, the Dogecoin Foundation is active again after a long break, Coinbase has amassed a $4 billion cash-backed war chest: Holder’s Digest, Aug. 15-21
21.8.2021
“Disambiguating Tailwind”
20.8.2021
I appreciated this bit of nuance from a post on Viget’s blog:
There could be a whole article written about the many flavours of Tailwind, but broadly speaking those flavours are:
1. Stock tailwind, ie. no changes to the
…
The post “Disambiguating Tailwind” appeared first...
Creating a Headless WordPress Site With Frontity
20.8.2021
Frontity is a WordPress-focused React-based server-side dynamic-rendering framework (phew!) that allows us to create fast headless websites. Chris has a good introduction to Frontity. I guess you could think of it like Next.js for WordPress. And while the demand …
The post Creating...