Search
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:...
How to Create a Motion Hover Effect for a Background Image Grid
10.6.2020
A short tutorial on how to achieve a motion hover effect on a background image grid.
The post How to Create a Motion Hover Effect for a Background Image Grid appeared first on Codrops
Jury Trial Scheduled for Billion Dollar Bitcoin Lawsuit Against Craig Wright
11.5.2020
Florida’s Southern District Court has been dealing with the Kleiman v. Wright case for well over two years and now the lawsuit is finally going to trial. A jury trial is set for July 6, 2020, in the Miami Division courthouse before Judge Beth Bloom. Meanwhile, Craig Wright,...
Sergei Polunin Embraces the Future of Dance by Collaborating With Sensorium Galaxy in the Brave New World of 3d Social Virtual Reality
25.4.2020
Sensorium Galaxy Is Rapidly Expanding 24 April 2020, Los Angeles: Sensorium Galaxy, the leading global virtual reality media platform has struck up a partnership with the Sergei Polunin Charity Foundation for the galaxy’s new Planet of Motion. The Sergei Polunin Charity Foundation for the Support...
Different Approaches to Responsive CSS Motion Path
24.4.2020
As a follow-up to Jhey’s recent post on responsive motion paths, Michelle Barker notes that another approach could be to just transform: scale() the whole dang element.
The trade-off there is that you’re scaling both the path and the element on the path at the same time; Jhey’s...
Collective #603
23.4.2020
Gallery * Responsive CSS Motion Path * Spacing in CSS * pattern.css * The Cost of JavaScript Frameworks
Collective #603 was written by Pedro Botelho and published on Codrops
Judge Cites Blockvest ‘Egregious Misconduct’ in Granting SEC Motion
21.4.2020
A federal judge chided Blockvest and its founder in an April 20 filing on the SEC case, citing “egregious misconduct and deceit.”
Terpin Fires Back at AT&T’s Motion to Dismiss $200M ‘SIM Swap’ Claim
16.4.2020
Terpin told Cointelegraph he was frustrated with AT&T’s ongoing attempts to waste time and money in court to “slow down the day of reckoning”
Create a Responsive CSS Motion Path? Sure We Can!
15.4.2020
There was a discussion recently on the Animation at Work Slack: how could you make a CSS motion path responsive? What techniques would be work? This got me thinking.
A CSS motion path allows us to animate elements along custom user-defined paths. Those paths follow the same structure as SVG paths....