What the React Native docs forgot to tell you about animations
Good article by Karen de Graaf to use along with the React Native docs on Animations Unfortunately React Native’s documentation about animations is not so great. Some things are explained rather...
View ArticleParticle Effects for Buttons
Using anime.js Luis Manuel has created some nice Particle Effects for buttons. Well done animations can put a nice touch onto a UI Particle Effects for Buttons →
View ArticleReact Native Parallax Scroll Header with Tabs
Nice writeup on how to create a typical screen where there’s a header image that fades out and disappears as you start scrolling. Essentially, everything but the header is put into a scrollview. In...
View ArticleAnimate CSS Grid Layouts with animate-css-grid
In a new(ish) web-project I’m working on, I went all-in on CSS Grid. The website contains a page where one can filter the list of elements shown. To animate this filtering I used animate-css-grid, as...
View ArticleDirection Aware Hover Effect
A thing I commonly see nowadays are animated lines underneath menus and links: Show Pen One issue with that though: when hovering over an item the animation does not start from the place where you...
View ArticleAnimated CSS border-image (using an SVG)
Charming little demo by Louis Hoebregts: Using a Data URI he injects an SVG as the url for the border-image CSS property. That SVG itself is then animated using a self-contained tad of inline CSS....
View ArticleThe Real Fake Cameras Of Toy Story 4
The Nerdwriter on what makes Toy Story 4 feel so authentic.
View ArticleSVG Line Animation with Vivus.js
https://www.bram.us/wordpress/wp-content/uploads/2019/12/vivus.mp4 Vivus is a lightweight JavaScript class (with no dependencies) that allows you to animate SVGs, giving them the appearence of being...
View ArticleBuilding mobile-first web animations in React
Talk by Alex Holachek, as brought forward at React Conf 2019: As the technology to create Progressive Web Apps continues to mature, React developers have the opportunity to write web apps that in some...
View ArticleStaggered Animations with CSS Custom Properties
Paul Hebert on the Paul Hebert blog: Movement in nature doesn’t happen all at once. Imagine a flock of birds taking off, raindrops splashing on the ground, or trees bending in the wind. The magic of...
View ArticleStacked Rainbow Cards
I like how this box animates on hover, thanks to the use of multiple box-shadow effects:
View ArticlePose Animator – Animate SVG Illustrations using your Camera
This is crazy: Pose Animator takes a 2D vector illustration and animates its containing curves in real-time based on the recognition result from PoseNet and FaceMesh. It borrows the idea of...
View ArticleBlind Spot
While working with CCTV cameras in a project, I was reminded of this short film from 2007:
View ArticleEnhancing User Experience With CSS Animations
Great talk by Stéphanie Walter (starting at 39:00): With practical examples, I show why certain animations work better than others and how to find the best timing and duration to build UI animations...
View ArticleHow to Play and Pause CSS Animations with CSS Custom Properties
Mads Stoumann, writing for CSS-Tricks, starts off with a simple idea: set a Custom Property to either playing or paused to control animation-play-state. [data-animation] { /* … */...
View Article3D CSS Birthday Card
Nice demo by Jhey: See the Pen 3D CSS Birthday Card (Tap to open! 👇) by Jhey (@jh3y) on CodePen. Contains a little bit of JavaScript to make the card respond your mouse movement and to play the audio....
View ArticleAnimated Greyscale to Color Image Reveal Effect
Ana Tudor recently shared a trick on how to make an image partially greyscale: #tinyCSStip Would you like to apply `filter: grayscale(1)`, but only partly, not everywhere? You can emulate that with...
View ArticleThe Surprising Things That CSS Can Animate
Back in June, Will Boyd wondered what things CSS can animate, which turns out to be quite a lot. This articles explores some of the unexpected things that CSS can animate and some nifty things you can...
View ArticleThe Future of CSS: Scroll-Linked Animations with @scroll-timeline (Part 1)
/* DL GRID @src https://codepen.io/bramus/pen/POEaXg*/ dl { display: grid; grid-template: auto / 10em 1fr; } dt { grid-column: 1; } dd { grid-column: 2; } dt, dd { margin: 0; padding: .3em .5em;...
View ArticleThe Future of CSS: Scroll-Linked Animations with @scroll-timeline (Part 2)
/* DL GRID @src https://codepen.io/bramus/pen/POEaXg*/ dl { display: grid; grid-template: auto / 10em 1fr; } dt { grid-column: 1; } dd { grid-column: 2; } dt, dd { margin: 0; padding: .3em .5em;...
View Article