In this tutorial we will be creating animated christmas banner with theme changer using HTML, CSS and JavaScript
I am using SnowStorm.js in this project to add snow effect
Link for SnowStorm.js - http://www.schillmania.com/projects/snowstorm/
And use WinRAR to extract SnowStorm.js
snowStorm.snowColor = '#fff';
var theme = document.getElementById("theme");
var themebg = document.getElementById("themebg");
theme.onclick = function(){
if(themebg.classList.contains("white")){
themebg.classList.replace("white" , "red")
}
else{
themebg.classList.replace("red","white")
}
}
Please subscribe CodeWithNiranjan