Search
CSS-Only Marquee Effect
5.4.2020
You make sure the text is more than twice the width of the screen, then use negative translate animations to do the marquee movement.
You’ll probably want to aria-hidden all but one of them if you need to duplicate the text. Or, you could use a very clever CSS trick...
How They Fit Together: Transform, Translate, Rotate, Scale, and Offset
30.3.2020
Firefox 72 was first out of the gate with "independent transforms." That is, instead of having to combine transforms together, like:
.el {
transform: rotate(10deg) scale(0.95) translate(10px, 10px);
}
...we can do:
.el {
rotate: 10deg;
scale: 0.95;
translate: 10px 10px;
}
That's extremely...
‘Overwhelming Evidence’ – Prosecutors File Motion to Dismiss Alleged Onecoin Lawyer’s Appeal
27.3.2020
While Onecoin’s crypto queen Ruja Ignatova remains at large, U.S. resident Mark Scott is trying to get his verdict acquitted after being accused of helping Onecoin leaders, including Ignatova, launder money and commit fraud. Also read: ‘What Bitcoin Did’ – Scanning...
Feds Fight Motion to Dismiss Case Against One Coin Crypto Scam Lawyer
25.3.2020
The U.S. government has urged a New York federal court to dismiss an alleged OneCoin money launderer’s request for acquittal
Playing With Particles Using the Web Animations API
18.3.2020
When it comes to motion and animations, there is probably nothing I love more than particles. This is why every time I explore new technologies I always end up creating demos with as many particles as I can.
In this post, we'll make even more particle magic using the Web Animations API to create...
Create a Wave Motion Effect on an Image with Three.js
17.3.2020
Learn how to make a wave motion effect on an image with Three.js.
Create a Wave Motion Effect on an Image with Three.js was written by Mario Carrillo and published on Codrops
Court Rejects Ripple’s Bid to Dismiss Class Action Lawsuit Filed by XRP Investors
27.2.2020
A court case that has the future of XRP at stake continues after Ripple’s motion to dismiss it was rejected by a court in California. The plaintiffs claim that the blockchain company sold the coin as an unregistered security and demand compensation. Ripple tried to avoid the case with...
XRP Still Third Largest Crypto by Market Cap After Founder Dumps 1 Billion Coins
10.2.2020
Crypto traders and speculators have been discussing the digital currency XRP (ripple) lately because the price has been stagnant compared to other digital assets. Some venture capitalists and analysts plan to short XRP, while other speculators believe the crypto is poised for a price jump in...
Get Moving (or not) with CSS Motion Path
3.2.2020
We just linked up the idea that offset-path can be cleverly used to set type on a path. Don't miss Michelle Barker's experimentation either, with drawing paths or animating text along a path.
Dan Wilson has also been following this tech for quite a while and points out why the sudden surge...
Set Type on a Circle… with offset-path
28.1.2020
Here's some legit CSS trickery from yuanchuan. There is this CSS property offset-path. Once upon a time, it was called motion-path and then it was renamed. I sort of rolled my eyes at the time, because the property is so obviously for animating things along a path. But you don't have to use it...
The Web in 2020: Extensibility and Interoperability
22.1.2020
In the past few years, we’ve seen a lot of change and diversion in regard to web technologies. In 2020, I foresee us as a web community heading toward two major trends/goals: extensibility and interoperability. Let’s break those down.
Extensibility
Extensibility describes...
Lawsuit Against Ripple May Decide the Fate of XRP but Regulators Have the Final Say
20.1.2020
A prolonged legal battle, which may hold the key to XRP’s future, has been extended again. The class action lawsuit alleges that Ripple issued and sold the coin, one of the largest by market cap, as an unregistered security. The decision on the defendant’s motion to dismiss the lawsuit...
Accused Onecoin Co-Conspirators Fight Criminal Charges in the US
10.12.2019
The Onecoin scam, a multi-level Ponzi scheme that acquired $4 billion from investors has been falling apart at the seams. Criminal proceedings have started against Onecoin leaders and one alleged associate who was found guilty of laundering $400 million has asked a New York judge for more time...
Motion Paths – Past, Present and Future
6.12.2019
Cassie Evans has a great intro to motion paths. That is, being able to animate an element along a path. Not just up/down/left/right, but whatever curvy/wiggly/weird path you want.
It's an interesting subject because there are so many different technologies helping to do it over time. SMIL...
Ripple Files Final Motion to Dismiss Class-Action Securities Lawsuit
6.12.2019
Ripple has filed to dismiss a class-action lawsuit that alleges it sold XRP in an unregistered securities offering
Motion Paths – Past, Present and Future
3.12.2019
The ability to animate along a motion path is a really useful thing to have in your SVG animation toolkit. Let's explore a few ways to achieve this, including the upcoming CSS motion path module and the newly released GSAP3.
Motion Paths – Past, Present and Future was written by Cassie Evans...
Attorney Fees Stack up as Craig Wright Fights Court Order
28.11.2019
During the last week, court documents stemming from the Kleiman v. Wright lawsuit show that the Kleiman estate is now pursuing roughly $658,581 for attorney fees and expenses. Additionally, self-proclaimed Bitcoin inventor Craig Wright has filed a motion to fight the sanctions imposed on half...
Judge Preserves SEC Motion to Strike Telegram’s Void for Vagueness Defense
27.11.2019
A federal judge has preserved an SEC motion to strike Telegram’s void for vagueness defense in the Gram token sale case
Tether to File Motion With NYAG to Dismiss Class Action Lawsuit
15.11.2019
The company claims that plaintiffs cannot prove Tether transactions caused bitcoin’s surge or that damages were incurred
High-speed Light Trails in Three.js
13.11.2019
A creative coding exploration into how to recreate a high-speed lights effect in real-time using Three.js.
High-speed Light Trails in Three.js was written by Daniel Velasquez and published on Codrops