Search
You Can Finally Import Your Owned Levels Into Hitman 3 On PC
18.2.2021
Hitman 3 PC players who own Hitman 1 or 2 can finally import their owned levels for free, developer IO Interactive announced today.Read more
Let’s Create a Custom Audio Player
18.2.2021
HTML has a built-in native audio player interface that we get simply using the <audio> element. Point it to a sound file and that’s all there is to it. We even get to specify multiple files for better browser support, …
The post Let’s Create a Custom Audio Player appeared first...
Barebones CSS for Fluid Images
18.2.2021
Zach takes a look at some fundamental HTML+CSS usage for fluid, responsive images. Most of it, I’d say, is what you’d expect, but things get weird when srcset gets involved.
I poked my way through, and in addition to the …
The post Barebones CSS for Fluid Images appeared first...
How ImageEngine can Optimize Contentful CMS For Faster Web Performance
18.2.2021
In this article, we will review how ImageEngine’s API can transform images better than the native API of Contentful.
The post How ImageEngine can Optimize Contentful CMS For Faster Web Performance appeared first on Codrops
Pionex Is a Crypto Exchange With Built-in Automated Trading Tools You Can Trust
18.2.2021
The international Pionex cryptocurrency exchange has been one of the fastest growing trading platforms in Asia in 2020 and it is now set to capture even more of the global market in 2021. What makes Pionex so popular is the trustworthy team of professionals behind it and the top notch automated...
You want…
17.2.2021
I’ve been enjoying these little “You want…” style posts. Post titles like that are a little more… forceful for my normal taste, but I like the spirit of sharing a best practice that perhaps isn’t well-known-enough.
Killian started it with
…
The post...
Things You Can Do With CSS Today
17.2.2021
Some nice coverage from Andy about CSS things that are truly new. If you haven’t looked at new things in CSS in, say, a year, I’d bet pretty much all of this will be new to you. A lot of …
The post Things You Can Do With CSS Today appeared first on CSS-Tricks.
You can support...
CSS Switch-Case Conditions
17.2.2021
CSS is yet to have a switch rule or conditional if, aside from the specific nature of @media queries and some deep trickery with CSS custom properties. Let’s have a look at why it would be useful if we …
The post CSS Switch-Case Conditions appeared first on CSS-Tricks.
You can support...
Use CSS Clamp to create a more flexible wrapper utility
17.2.2021
I like Andy’s idea here:
.wrapper {
width: clamp(16rem, 90vw, 70rem);
margin-left: auto;
margin-right: auto;
padding-left: 1.5rem;
padding-right: 1.5rem;
}
Normally I’d just set a max-width there, but as Andy says:
This becomes a slight issue in mid-sized viewports, such...
No Man's Sky Players Can Now Tame, Breed And Train Alien Creatures
17.2.2021
Showing no sign of slowing down after a 2020 filled with game-changing updates, Hello Games starts off the fifth year of No Man’s Sky with the “Companions” update, which gives players the ability to befriend procedurally-generated alien creatures, turning them into loyal universe-exploring...
Say Whatcha Wanna About Final Fantasy XIII, You Can’t Deny Its Amazing Soundtrack
17.2.2021
Welcome to Morning Music, Kotaku’s ongoing hangout for folks who love video games and the cool-ass sounds they make. Today we’re continuing to indulge my terminal case of Final Fantasy brain with a deep dive into Final Fantasy XIII’s mold-breaking soundtrack.Read more
Peter Schiff Admits Bitcoin Could Reach $100K After BTC Price Soars Past His Expectations
17.2.2021
Gold bug Peter Schiff has revised his bitcoin prediction after the price of the cryptocurrency exceeded his expectations, reaching an all-time high above the $50K level. He now says, “I must admit that a move up to $100,000 can’t be ruled out.” Nonetheless, the long-term bitcoin...
Top bidder at Ultraviolet NFT auction can collaborate with 3LAU on new music
17.2.2021
Crypto influencer and DJ 3LAU has announced an upcoming series of NFTs to commemorate the third anniversary of his 2018 album, Ultraviolet
Front of the Front / Back of the Front
17.2.2021
People really latched onto Brad’s framing. And for good reason. Front-end development has gotten so wide scoping that there are specialists inside of it. Two years ago, I cut it down the middle and now Brad is putting …
The post Front of the Front / Back of the Front appeared first...
How to Create a Shrinking Header on Scroll Without JavaScript
16.2.2021
Imagine a header of a website that is nice and thick, with plenty of padding on top and bottom of the content. As you scroll down, it shrinks up on itself, reducing some of that padding, making more screen real …
The post How to Create a Shrinking Header on Scroll Without JavaScript appeared...
Maximally optimizing image loading for the web in 2021
16.2.2021
Malte Ubl’s list for:
8 image loading optimization techniques to minimize both the bandwidth used for loading images on the web and the CPU usage for image display.
Fluid width images in CSS, not forgetting the height and width attributes
…
The post Maximally optimizing image...
You Can Instantly Summon Bowser In Bowser’s Fury With An Amiibo
16.2.2021
The most infuriating part of Bowser’s Fury is Bowser himself. King Koopa’s arrival can both ruin your day and grant access to previously inaccessible areas, meaning the bite-sized Bowser’s Fury is somewhat of a waiting game. But you don’t have to wait for Bowser to do his thing. You just need...
The web didn’t change; you did
16.2.2021
I love this piece from Remy Sharp where he argues that the web didn’t get more complicated over the last 20 years, despite what we might think:
Web development did not change. Web development grew. There are more options now,
…
The post The web didn’t change; you did appeared first...
Netlify
16.2.2021
High five to Netlify for the ❥ sponsorship. Netlify is a great place to host your static (or not-so-static!) website because of the great speed, DX, pricing, and feature set. I’ve thought of Netlify a bunch of times just in …
The post Netlify appeared first on CSS-Tricks.
You...
Using AbortController as an Alternative for Removing Event Listeners
15.2.2021
The idea of an “abortable” fetch came to life in 2017 when AbortController was released. That gives us a way to bail on an API request initiated by fetch() — even multiple calls — whenever we want.
Here’s a super …
The post Using AbortController as an Alternative for Removing Event Listeners...