Search
Porsche Enters NFT Market Launching Trading Card Platform Fanzone
16.6.2021
Porsche, the German carmaker, is diversifying to digital markets through the launch of Fanzone, an NFT-based trading card market. Fanzone, built by Forward31, a Porsche company builder, seeks to capitalize on classic trading card demand. At the same time, Fanzone tries to combine this classical...
ConsenSys, Securosys Combine Tech for ‘Secure’ Way to Stake on Ethereum 2.0
2.2.2021
The method employs Securosys' hardware security modules to keep participants' keys safe
Two Issues Styling the Details Element and How to Solve Them
13.1.2021
In the not-too-distant past, even basic accordion-like interactions required JavaScript event listeners or some CSS… trickery. And, depending on the solution used, editing the underlying HTML could get complicated.
Now, the <details> and <summary> elements (which combine to form...
MinePlex Creates CrossFi Crypto Bank by Combining Traditional Finances With Blockchain
24.12.2020
PRESS RELEASE. The MinePlex platform announces the creation of a new mobile crypto bank for CrossFi industry that aims to combine the traditional financial instruments with blockchain technologies. The mobile crypto bank is supplied with the functionality that allows using cryptocurrencies...
How to Animate a SVG with border-image
3.12.2020
Let’s take a look at how to combine the border-image property in CSS with animated SVGs that move around a border. In the process, we’ll cover how to hand-craft resizable, nine-slice animated SVGs that you can use not only re-create the effect, but to make it your own.
Here’s what we’re...
Easing Animations in Canvas
19.6.2020
The <canvas> element in HTML and Canvas API in JavaScript combine to form one of the main raster graphics and animation possibilities on the web. A common canvas use-case is programmatically generating images for websites, particularly games. That’s exactly what I’ve done in a website...
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...
Flexible Repeating SVG Masks
22.3.2020
Tyler Gaw reminds us that mask-image can repeat, resize, and move just like background-image does, which is fun to combine and play with. I could see it being a fun option for an <hr, like Sara is doing.
CodePen Embed Fallback
Direct Link to Article — Permalink… Read article...
Plaintiffs Combine Their Market-Manipulation Lawsuits Against Bitfinex and Tether
17.1.2020
Three class action lawsuits alleging Bitfinex and Tether manipulated the bitcoin market have been combined in federal court, with the stablecoin issuer promising to fight the claims
Scroll, Refraction and Shader Effects in Three.js and React
16.12.2019
Discover how to use react-three-fiber and combine some common techniques to create a Three.js powered layout with shader effects.
Scroll, Refraction and Shader Effects in Three.js and React was written by Paul Henschel and published on Codrops
Morpheus Labs Partners with Wave Platform to Combine Wave’s Tech with Its BPaaS
25.7.2019
Singapore based blockchain service provider Morpheus Labs has announced its partnership with Waves Platform. It aims to combine Wave’s core expertise in blockchain tech with its own Blockchain Products as a Service (BPaaS). We are excited to partner @wavesplatform with the priority to integrate...
How to Reverse a Video
9.4.2019
One of my favorite media utilities is ffmpeg. This command line utility allows us to do some pretty amazing stuff like; Slice videos Convert video formats Modify video speed Combine audio and video Every once in a while I see a meme or funny video that reverses a video for effect. Since ffmpeg does...
The Ultimate Guide to JavaScript Algorithms: Combining Arrays Without Duplicates
19.2.2019
Combining Arrays Without Duplicates
When developing software, we often need to combine data efficiently and without repetition. This often comes up when manipulating listed data with the use Arrays
Making Movies With amCharts
16.1.2019
In this article, I want to show off the flexibility and real power of amCharts 4. We’re going to learn how to combine multiple charts that run together with animations that form a movie experience. Even if you’re only interested in creating a different kind of animation that has nothing to do with...