Search
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...
CSS Can Influence Screenreaders
23.3.2020
Ben Myers covers some clear examples of where CSS totally changes what some screen readers announce. For example, some screenreader will see text-transform: uppercase; on a button label that says "Add" and read it like an abbreviation, "A.D.D."
These cases of CSS messing with our screenreader...
How Blockchain Can Transform Cybersecurity?
22.3.2020
Cybersecurity is one of the prime concerns of the present world in which businesses are witnessing newer threats with each passing day. Although, the future of cybersecurity will always be unpredictable, yet it is important to prepare the assessment of possible vulnerabilities and potential...
Animating CSS Width and Height Without the Squish Effect
6.3.2020
The first rule of animating on the web: don't animate width and height. It forces the browser to recalculate a bunch of stuff and it's slow (or "expensive" as they say). If you can get away with it, animating any transform property is faster (and "cheaper").
Butttt, transform can be tricky. Check...
Weaving a Line Through Text in CSS
26.2.2020
Earlier this year, I came across this demo by Florin Pop, which makes a line go either over or under the letters of a single line heading. I thought this was a cool idea, but there were a few little things about the implementation I felt I could simplify and improve at the same time.
First off,...
Tech Like Blockchain Will Transform Chinese Economy, Bank Chair Says
3.2.2020
The next decade will see a digital transformation in China with blockchain adoption, according to Minsheng Bank’s chairman
Blockchain and 5G: Greatest Promise Is to Transform the Developing World
25.1.2020
How and why the developing world could benefit from the new technological hybrid: blockchain and 5G?
How to Modify Nodes in an Abstract Syntax Tree
26.12.2019
One of the more powerful concepts I've stumbled across recently is the idea of abstract syntax trees, or ASTs. If you've ever studied alchemy, you may recall that the whole motivation for alchemists was to discover some way to transform not-gold into gold through scientific or arcane methods.
ASTs...
iOS 13 Broke the Classic Pure CSS Parallax Technique
27.11.2019
I know. You hate parallax. You know what we should hate more? When things that used to work on the web stop working without any clear warning or idea why.
Way back in 2014, Keith Clark blogged an exceptionally clever CSS trick where you essentially use a CSS transform to scale an element down...
Zhou Sha Says How Blockchain Technology Will Reshape and Transform the Chinese Economy
13.11.2019
According to Zhou Sha, founder and CEO of Jingtum Tech, blockchain technology by using its advanced cryptographic methods, will help in confirming the rights concerning the individual data of the people who generate it. This dream can be a reality that may occur over the next 10 to 15 years, said...
Wirex Launches Visa Travelcard to Transform 800 Billion Dollar Payments Industry of APAC
11.11.2019
Wirex, a cryptocurrency and fiat transfer platform headquartered in UK’s London, has recently unveiled its latest offering in the form of next-gen Wirex Visa Travelcard. The firm believes this card could help transform the 800 billion dollar payments industry of APAC. The official announcement...
How Can Blockchain Transform E-commerce and the Way of Doing Business?
11.11.2019
The e-commerce marketplace has been witnessing a lot of transitions and transformations since the implementation of blockchain technology in various sectors of business. However, with all these alterations, the E-commerce platforms have become one of the most lucrative sectors post the 21st...
Molecular Future Joins Hands With Blue Ocean to Transform Cryptocurrency Payments
8.11.2019
One-stop digital asset investment service platform, Molecular Future, has recently collaborated with one of Asia’s leading e-payment firm, Blue Ocean, to jointly discuss the present as well as the future of cryptocurrency payments. The collaboration will largely focus on exploiting the penetration...
French Ministry of Education Publishes Bitcoin Resource Guide for Educators
1.11.2019
As digital currencies transform the world, concepts like Bitcoin continue to percolate into academic courses and higher education worldwide. The French Ministry of National Education’s recently published economics and social sciences resource guide for teachers discusses cryptographic money...
Binance Research: Ethereum’s Switch to Staking Will Transform Industry
29.10.2019
Binance Research: with Ethereum 2.0’s launch in early 2020, staking is poised to become a major feature of the crypto landscape
Crypto and Real Estate Were Built for One Another
9.10.2019
Whether buying, selling or tokenizing real estate, the property market and blockchain are deeply intertwined. As the purchase of property has become possible with bitcoin, so has the wider potential of blockchain technology to transform the industry. The convergence of real estate...
AI is All Set to Transform the World of Finance
20.9.2019
The world of technology has evolved at a breakneck pace over the course of the last half a decade or so, and some of the technologies that have evolved have the potential of upending entire industries. One of those new technologies is artificial intelligence or AI, and over the past couple...
Gartner: Blockchain Will Transform Most Industries in 10 Years
16.9.2019
Information technology service management giant Gartner foresees blockchain becoming transformative for most industries within 10 years
WDRL — Edition 275: Transform Organisations, Motivation and Simple Tooling
13.9.2019
Hey,
This isn’t business as usual, we can come to that later. Business as usual has time but we can use a short break to finally start shaping our own future. From September 20th – 27th 2019 millions of us will walk out of our workplaces and homes to join young climate strikers on the streets...
Various Methods for Expanding a Box While Preserving the Border Radius
6.9.2019
I've recently noticed an interesting change on CodePen: on hovering the pens on the homepage, there's a rectangle with rounded corners expanding in the back.
Expanding box effect on the CodePen homepage.
Being the curious creature that I am, I had to check how this works! Turns out, the rectangle...