Search
Representation Matters
15.12.2020
This year I had the pleasure of re-launching The Accessibility Project. I spend a lot of time researching and writing about accessibility and inclusive design, so this felt like the cumulation of a lot of that effort. The site now uses all sorts of cool web features like CSS Grid, @supports,...
Creating websites with prefers-reduced-data
8.12.2020
Spoiler alert: There is no support for it yet. But it is defined in the Media Queries Level 5 spec that includes other recent, but more familiar user preference features, like prefers-color-scheme and prefers-reduced-motion.
The Polypane blog goes into incredible depth on prefers-reduced-data...
Judge rejects motion to freeze Cred's crypto assets in bankruptcy case
26.11.2020
A U.S. bankruptcy judge has rejected a motion to freeze the assets of beleaguered crypto lending service that was filed by its users
GIFS and prefers-reduced-motion
3.11.2020
The <picture> element has a trick it can do where it shows different image formats in different situations. If all you are interested in is formats for the sake of performance, maybe you’d do:
<picture<source srcset="img/waterfall.avif" type="image/avif"<source...
Ethereum Dev Virgil Griffith’s Attorney Files Motion to Dismiss Charges of Aiding North Korea
26.10.2020
The motion, filed by Brian Klein, claims the indictment of Griffith doesn't "specify any alleged overt facts," and contains no actual allegation of fact
Ethereum researcher Virgil Griffith files motion to dismiss North Korea conspiracy charge
24.10.2020
Griffith argues that because his April 2019 conference presentation consisted of widely-available public information, he was not providing a "service" to North Korean officials
UI Interactions & Animations Roundup #11
22.10.2020
A new hand-picked collection of great web motion design concepts, UI interactions and animations.
The post UI Interactions & Animations Roundup #11 appeared first on Codrops
How to Create a Realistic Motion Blur with CSS Transitions
14.10.2020
Before we delve into making a realistic motion blur in CSS, it’s worth doing a quick dive into what motion blur is, so we can have a better idea of what we’re trying to reproduce.
Have you ever taken a photo of something moving quickly, especially under low light, and it turned into a blurry...
Ripple Has Mixed Success in Motion to Dismiss Lawsuit Alleging Securities Fraud
6.10.2020
The judge threw out some of the claims in the lawsuit but the case can continue based on others relating to allegedly misleading statements by CEO Brad Garlinghouse
ICO Aftermath: US Rules in Favour of SEC in $100M KIK Case – SALT to Reimburse Claimants From 2017 ICO
1.10.2020
A US court has ruled in favour of the US SEC after the regulator’s filing of a motion seeking summary judgment against Kik for violating the country securities laws. Kik, which raised $100 million from 2017 ICO, had filed its own motion of summary judgment but the court refused to grant this....
UI Interactions & Animations Roundup #10
22.9.2020
Check out the latest trends in web motion design, UI interaction and animations and get inspired.
The post UI Interactions & Animations Roundup #10 appeared first on Codrops
Accessible Web Animation: The WCAG on Animation Explained
22.9.2020
It’s true, web animation can be accessible! Sometimes it just takes a little extra effort to make sure that it is. There are strategic things we can do to make sure our animations have a positive impact on accessibility, like planning how they contribute to the overall UX and ease of use of...
Working with JavaScript Media Queries
7.9.2020
What’s the first thing that comes to mind when you think of media queries? Maybe something in a CSS file that looks like this:
body {
background-color: plum;
}
@media (min-width: 768px) {
body {
background-color: tomato;
}
}
CSS media queries are a core ingredient in any responsive...
Tether, Bitfinex File Motion to Dismiss Market Manipulation Lawsuit
4.9.2020
Lawyers for Tether and Bitfinex parent iFinex have said a class action accusing them of market manipulation relies on unfounded allegations
Us Federal Court Ruling — Bitcoin Is a Form of Money
25.7.2020
A US Federal Court said Friday that bitcoin is a form of money covered under the Washington D.C., Money Transmitters Act (MTA). The court made this conclusion as it denied a motion to dismiss criminal charges against Larry Dean Harmon, the operator of an underground bitcoin trading platform....
Levels of Fix
20.7.2020
On the web, we have the opportunity to do work that fixes things for people. It’s fascinating to me how different the scope of those fixes can be.
Consider the media query prefers-reduced-motion. Eric wrote:
I think it’s also worth pointing out the true...
20,000 Helbizcoin Investors Accuse Company of Trying to Destroy Evidence, Seek Court Injunction
12.7.2020
A group representing about 20,000 investors in Helbiz Inc has filed a motion seeking a temporary restraining order and preliminary injunction against the company. Investors want a motion granted to stop the company from destroying smart contracts that supports Helbiz Inc.’s ERC20, a token...
Nvidia Files Motion to Dismiss $1B Class Action Over Crypto GPU Sales
1.7.2020
Nvidia has filed for the dismissal of a complaint alleging it fraudulently attributed over $1 billion in sales to gaming markets amid the 2017 crypto bubble
Kleiman Bitcoin Case Heads to Trial as Motion for Sanctions Against Craig Wright Is Denied
25.6.2020
A Florida judge threw out a motion for sanctions against Wright saying the lawsuit over 1.1 million BTC would be better decided by a jury
CSS background-repeat: round
23.6.2020
The CSS spec is full of gems that sneak their way past most of us web designers and developers. Stuff like :focus-within, prefers-reduced-motion, and prefers-color-scheme suddenly make their way into CSS without us really finding out for months or years. One such example is background-repeat:...