Css loaders ii

Developer
Size
2,294 Kb
Views
12,144

How do I make an css loaders ii?

What is a css loaders ii? How do you make a css loaders ii? This script and codes were developed by Khalkeus on 11 November 2022, Friday.

Css loaders ii Previews

Css loaders ii - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>css loaders ii</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <head>	<meta charset=utf-8>
</head>
<body>	<div class="holder">	<div class="inner">	<div class="circle" style="animation-name: bounce; animation-timing-function: linear;"></div>	</div>	<div class="inner">	<div class="circle" style="animation-name: scale1; mix-blend-mode: exclusion; transform-origin: bottom"></div>	<div class="circle" style="animation-name: scale2; mix-blend-mode: exclusion; transform-origin: top;"></div>	</div>	<div class="inner" >	<div class="circle" style="animation-name: m1; mix-blend-mode: exclusion; transform-origin: bottom"></div>	<div class="circle" style="animation-name: m1; mix-blend-mode: exclusion; transform-origin: bottom; animation-delay: -1s"></div>	<div class="circle" style="animation-name: m1; mix-blend-mode: exclusion; transform-origin: bottom; animation-delay: -2s"></div>	</div>	<div class="inner"; >	<div class="circle" style="animation-name: rotate; transform-origin: top left;"></div>	<div class="circle" style="animation-name: rotate; transform-origin: top right; animation-delay: -.5s"></div>	<div class="circle" style="animation-name: rotate; transform-origin: bottom right; animation-delay: -1s"></div>	<div class="circle" style="animation-name: rotate; transform-origin: bottom left; animation-delay: -1.5s"></div>	</div>	<div class="inner" style="filter: contrast(500%); background: black">	<div class="circle" style="animation-name: blur; filter: blur(2px); animation-delay: .5s"></div>	<div class="circle" style="animation-name: blur; filter: blur(2px); animation-delay: 1s"></div>	<div class="circle" style="animation-name: blur; filter: blur(2px); animation-delay: 1.5s"></div>	<div class="circle" style="animation-name: blur; filter: blur(2px); animation-delay: 2s"></div>	<div class="circle" style="animation-name: blur; filter: blur(2px); animation-delay: 2.5s "></div>	</div>	<div class="inner">	<div class="circle" style="animation-name: flower; background: none; border: 1px solid white; animation-duration: 1s; transform: scale(0);"></div>	<div class="circle" style="animation-name: flower; background: none; border: 1px solid white; animation-duration: 1s; animation-delay: .2s; transform: scale(0);"></div>	<div class="circle" style="animation-name: flower; background: none; border: 1px solid white; animation-duration: 1s; animation-delay: .4s; transform: scale(0);"></div>	<div class="circle" style="animation-name: flower; background: none; border: 1px solid white; animation-duration: 1s; animation-delay: .6s; transform: scale(0);"></div>	<div class="circle" style="animation-name: flower; background: none; border: 1px solid white; animation-duration: 1s; animation-delay: .8s"; transform: scale(0);></div>	<div class="circle" style="animation-name: flower; background: none; border: 1px solid white;animation-duration: 1s; animation-delay: 1s; transform: scale(0);"></div>	</div>	</div>	</div>
</body>
</body>
</html>

Css loaders ii - Script Codes CSS Codes

html, body{	width: 100%;	height: 100%;	overflow: hidden;	margin: 0px;	padding: 0px;	background: black;	}	.holder{	width: 320px;	height: 210px;	position: absolute;	top: 50%;	left: 50%;	margin: -105px 0 0 -160px;	display: grid;	grid-gap: 10px;	grid-template-columns: 100px 100px 100px;	grid-auto-rows: minmax(100px, auto);	}	.inner{	border: 3px solid white;	}	@keyframes bounce{	0%{	transform: translate(0em, 0em);	}	10%{	transform: translate(-3em, 1em);	}	20%{	transform: translate(-1em, 3em);	}	40%{	transform: translate(3em, 0em);	}	50%{	transform: translate(2em, -3em);	}	70%{	transform: translate(1em, 3em);	}	80%{	transform: translate(-3em, 1em);	}	90%{	transform: translate(3em, -2em);	}	}	@keyframes scale1{	0%{	transform: translateY(.5em) scale(0);	}	10%{	transform: translateY(.5em) scale(0);	}	50%{	transform: translateY(.5em) scale(3);	}	100%{	transform: translateY(.5em) scale(0);	}	}	@keyframes scale2{	0%{	transform: translateY(.5em) scale(0);	}	10%{	transform: translateY(-.5em) scale(0);	}	50%{	transform: translateY(-.5em) scale(3);	}	100%{	transform: translateY(-.5em) scale(0);	}	}	@keyframes rotate{	0%{	transform: rotate(0deg) scale(0);	}	50%{	transform: rotate(180deg) scale(1);	}	100%{	transform: rotate(360deg) scale(0);	}	}	@keyframes blur{	0%{	transform: translate(0em, 0em);	}	10%{	transform: translate(1em, 0em);	}	20%{	transform: translate(0em, 0em);	}	30%{	transform: translate(0em, 1em);	}	40%{	transform: translate(0em, 0em);	}	50%{	transform: translate(-1em, 0em);	}	60%{	transform: translate(0em, 0em);	}	70%{	transform: translate(0em, -1em);	}	80%{	transform: translate(0em, 0em);	}	}	@keyframes flower{	0%{	transform: scale(0);	}	100%{	transform: scale(5);	}	}	@keyframes m1{	0%{	transform: translate(0em, -2em);	}	33%{	transform: translate(2em, 2em);	}	66%{	transform: translate(-2em, 2em);	}	100%{	transform: translate(0em, -2em);	}	}	.circle{	width: 10px;	height: 10px;	margin: 40px;	border: 3px solid white;	background: white;	border-radius: 20px;	position: fixed;	transform: rotate(0deg);	animation-duration: 5s;	animation-iteration-count: infinite;	animation-timing-function: ease;	}
Css loaders ii - Script Codes
Css loaders ii - Script Codes
Home Page Home
Developer Khalkeus
Username khalkeus
Uploaded November 11, 2022
Rating 4
Size 2,294 Kb
Views 12,144
Do you need developer help for Css loaders ii?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Khalkeus (khalkeus) Script Codes
Name
Waves
Boids iii
Random walkers
Metaballs
Capybaras
City generator
Warpspeed
Boids i
Particle fire
Boids ii
Create amazing marketing copy with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!