Show toast/snackbar in a webpage using CSS and JavaScript

In this post, we will be learning to display a simple toast message or snackbar in a webpage using CSS, HTML and JavaScript. Full Source Code :   <style> #snakbar{ visibility:hidden; min-width:250px; margin-left:-125px; background-color:#333; color:#fff; text-align:center; border-radius:2px; padding:10px; position:fixed; z-index:1;... Read more

Moving Car Animation with Javascript and CSS

Moving Car Animation with CSS and JavaScript
In this post, we will be going through a simple moving car animation using only Javascript and CSS. We rotate wheels with CSS and move car using JavaScript. Full Source Code : <h2>Moving Car with JavaScript and CSS</h2> <style> body{... Read more

Animate SnowFall in your webpage with CSS and JavaScript

In this post, we are going to learn to animate a snowfall in webpage using CSS and JavaScript. The full source code for this animation is as follows :   <script> var snowmax=75; var snowcolor=new Array("#4285f4","#cc181e","#008000"); var snowtype=new Array("Arial Black","Arial... Read more