Bouncing Ball Effects Animation using HTML & CSS Animation in Hindi

Link For Youtube Video :https://youtu.be/GW-991fXZd4

<!DOCTYPE html>
<html>
<head>
	<title></title>
	<style>
		*{ margin: 0; padding: 0; }

		div{
			height: 100vh;
			display: flex;
			justify-content: center;
			align-items: center;
			background-color: #2d3436
		}

		div ul{ display: flex; border-bottom: 10px solid white;}

		div ul li{width: 50px; height: 50px;
			background-color: black;
			list-style: none;
			margin: 0 10px;
			border-radius: 50%; 	
			animation: bouncy 1s linear infinite;
		}

		@keyframes bouncy{
			0%{transform: translateY(0);}
			50%{transform: translateY(-150px);}
			100%{transform: translateY(0);}
		}

		ul li:nth-child(1){
			animation-delay: 0.2s;
			background-color: #fdcb6e;
		}

		ul li:nth-child(2){
			animation-delay: 0.6s;
			background-color: #ff7675;
		}

		ul li:nth-child(3){
			animation-delay: 0.4s;
			background-color: #81ecec;
		}

		ul li:nth-child(4){
			animation-delay: 0.8s; 
			background-color: #55efc4;
		}

		ul li:nth-child(5){
			animation-delay: 0.5s;
			background-color: #fd79a8;
		}
	</style>
</head>
<body>

<div>
	<ul>
		<li></li>
		<li></li>
		<li></li>
		<li></li>
		<li></li>
	</ul>
</div>

</body>
</html>

Leave a comment