Best Post of the Month – April 2023

best-post-of-the-month-–-april-2023

1. SVG sphere animation in React.js with anime.js

In this blog post we animate the sphere using anime js in react js. There are many Javascript animation libraries out there, but Anime.js is one of the best. it’s easy to use, has a small and simple API, and offers everything you could want from a modern animation engine.

SVG sphere animation in React.js  with anime.js

2. Stepper Iteration in React JS with Anime JS

In this blog post we animate the count box using anime js in react js. There are many Javascript animation libraries out there, but Anime.js is one of the best. it’s easy to use, has a small and simple API, and offers everything you could want from a modern animation engine.

Stepper Iteration in React JS with Anime JS

3. Beautiful SVG Cat Animation in React

Lottie Animation in react

4. CSS 3D Isometric Social Media Menu Hover Effects

CSS 3D Isometric Social Media Menu Hover Effects

CSS 3D Isometric Social Media Menu Hover Effects

5. How to create a scroll to top btn in react js

How to create a scroll to top btn in react js

6. Free 3D Illustrations library for your projects

Casual life 3d icons

7. 25 Killer One-Liners in JavaScript

Some of the example

i. Detect Dark Mode

const prefersDarkMode = window.matchMedia( "(prefers-color-scheme: dark)").matches; 
console.log(prefersDarkMode);

ii. Remove falsy values from array

const removeFalsy = (arr) => arr.filter(Boolean)

removeFalsy([0, 'a string', '', NaN, true, 5, undefined, 'another string', false]) // ['a string', true, 5, 'another string']

iii. Shuffle an array

const shuffle = arr => arr.sort(() => Math.random() - 0.5);

console.log(shuffle([1, 2, 3, 4, 5])); // [2, 5, 1, 4, 3] (output will vary)

8. 3D Card Hover Effect

3D Card Hover Effect

Free CSS Tools

  1. CSS Glassmorphism Generator

  2. Neumorphism CSS Generator

Thanks for Reading ❤️! Check my website Demo coding for updates about my latest blog posts, video tutorials, and some cool web dev tips. Let’s be friends!

Total
0
Shares
Leave a Reply

Your email address will not be published. Required fields are marked *

Previous Post
dark-mode-in-3-lines-of-css-and-other-adventures

Dark Mode in 3 Lines of CSS and Other Adventures

Next Post
simple-it:-set-up-and-ongoing-maintenance-of-zero-assumptions

Simple IT: Set Up and Ongoing Maintenance of Zero Assumptions

Related Posts