Loading Pixels

Size
3,371 Kb
Views
2,024

How do I make an loading pixels?

"Under Construction" animation I created for my website. No classes. http://www.85pixels.com. What is a loading pixels? How do you make a loading pixels? This script and codes were developed by Perthz Weerawat Weera on 31 January 2023, Tuesday.

Loading Pixels Previews

Loading Pixels - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Loading Pixels</title> <script src="https://s.codepen.io/assets/libs/modernizr.js" type="text/javascript"></script> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css"> <style> /* NOTE: The styles were added inline because Prefixfree needs access to your styles and they must be inlined if they are on local disk! */ @import url(https://fonts.googleapis.com/css?family=Russo+One);
h1, h2 { color: rgba(23,246,251, 1.0); margin: 2%; font-family: 'Russo One', sans-serif;
}
h1 {font-size: 2em;}
h2 {font-size: 1.2em;}
html{ width: 100%;	height: 100%;	background-color: rgba(8,8,8,1.0);
}
ul{	height: 100%;	width: 100%;	display: block;	margin: 0 auto;
}
li{	position: absolute;	left: 50%;	top: 50%;	display: block;	background: transparent;	border: 10px solid rgba(23,246,251, 1.0);	border-left-color: transparent;	border-right-color: transparent;	border-radius: 500px;	transition: all 0.5s ease;
}
li:last-child {	position: absolute;	left: 50%;	top: 50%;	z-index: 20;	width: 200px;	height: 100px;	margin-left: -110px;	margin-top: -110px;	padding: 70px 0px 30px;	background-color: rgba(8,8,8,1.0);	border: 10px solid rgba(8,8,8,1.0);	border-radius: 200px;	text-shadow: 2px 2px 0px rgba(0,0,0,1);	box-shadow: 0px 0px 30px rgba(23,246,251, 0.5);	animation: pulseShadow 5s infinite linear;
}
li:last-child:after{	content:'';	border: 3px dotted rgba(22,42,43,1.0);	border-radius: 200px;	width: 200px;	height: 200px;	display: block;	position: absolute;	top:-3px;	left:-3px;	background-color: transparent;	box-shadow: inset 0px 0px 30px rgba(0,0,0,1.0);
}
li:first-child{	margin-left: -130px;	margin-top: -130px;	z-index: 2;	width: 240px;	height: 240px;	border-width: 10px;	animation: spinBG 5s infinite linear;
}
li:nth-child(2){	margin-left: -137px;	margin-top: -137px;	z-index: 1;	width: 270px;	height: 270px;	border-width: 2px;	border-style: dotted;	box-shadow: 0px 0px 20px rgba(23,246,251, .5);	animation: spinBG2 2s infinite linear;
}
li:nth-child(3){	margin-left: -150px;	margin-top: -150px;	z-index: 1;	width: 296px;	height: 296px;	border-width: 2px;	box-shadow: inset 0px 0px 25px rgba(23,246,251, .25);	animation: spinBG 12s infinite linear;
}
li:nth-child(4){	margin-left: -170px;	margin-top: -170px;	z-index: 1;	width: 330px;	height: 330px;	border-width: 5px;	border-style: solid;	box-shadow: inset 0px 0px 25px rgba(23,246,251,1.0);	animation: spinBG3 8s infinite linear;
}
/*------------------------------------------- Animations
-------------------------------------------*/
@keyframes pulseGlow{	0% {text-shadow: 0px 0px 20px rgba(23,246,251, 0.75);}	50% {text-shadow: 0px 0px 40px rgba(23,246,251, 0.5); }	100%{text-shadow: 0px 0px 20px rgba(23,246,251, 0.75);}
}
@keyframes pulseShadow{	0% {box-shadow: 0px 0px 30px rgba(23,246,251, 0.25);}	50% {box-shadow: 0px 0px 30px rgba(23,246,251, 0.75);}	100%{box-shadow: 0px 0px 30px rgba(23,246,251, 0.25);}
}
@keyframes spinBG{	0% {transform: rotate(0deg);}	100%{transform: rotate(360deg);}
}
@keyframes spinBG2{	0%{	transform: rotate(360deg);	box-shadow: 0px 0px 1px rgba(23,246,251, 0.5);	}	50%{	transform: rotate(180deg);	box-shadow: 0px 0px 20px rgba(23,246,251, 0.5);	}	100%{	transform: rotate(0deg);	box-shadow: 0px 0px 1px rgba(23,246,251, 0.5);	}
}
@keyframes spinBG3{	0%{	transform: rotate(180deg);	box-shadow: 0px 0px 1px rgba(23,246,251, 0.1);	}	50%{	transform: rotate(0deg);	}	100%{	transform: rotate(-180deg);	}
} </style> <script src="https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script>
</head>
<body> <h1 align="center">Under Construction</h1>
<h2 align="center">Please Contact [email protected]</h2>
<ul> <li></li> <li></li> <li></li> <li></li> <li></li>
</ul> <script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
</body>
</html>

Loading Pixels - Script Codes CSS Codes

@import url(https://fonts.googleapis.com/css?family=Russo+One);
h1, h2 { color: rgba(23,246,251, 1.0); margin: 2%; font-family: 'Russo One', sans-serif;
}
h1 {font-size: 2em;}
h2 {font-size: 1.2em;}
html{ width: 100%;	height: 100%;	background-color: rgba(8,8,8,1.0);
}
ul{	height: 100%;	width: 100%;	display: block;	margin: 0 auto;
}
li{	position: absolute;	left: 50%;	top: 50%;	display: block;	background: transparent;	border: 10px solid rgba(23,246,251, 1.0);	border-left-color: transparent;	border-right-color: transparent;	border-radius: 500px;	transition: all 0.5s ease;
}
li:last-child {	position: absolute;	left: 50%;	top: 50%;	z-index: 20;	width: 200px;	height: 100px;	margin-left: -110px;	margin-top: -110px;	padding: 70px 0px 30px;	background-color: rgba(8,8,8,1.0);	border: 10px solid rgba(8,8,8,1.0);	border-radius: 200px;	text-shadow: 2px 2px 0px rgba(0,0,0,1);	box-shadow: 0px 0px 30px rgba(23,246,251, 0.5);	animation: pulseShadow 5s infinite linear;
}
li:last-child:after{	content:'';	border: 3px dotted rgba(22,42,43,1.0);	border-radius: 200px;	width: 200px;	height: 200px;	display: block;	position: absolute;	top:-3px;	left:-3px;	background-color: transparent;	box-shadow: inset 0px 0px 30px rgba(0,0,0,1.0);
}
li:first-child{	margin-left: -130px;	margin-top: -130px;	z-index: 2;	width: 240px;	height: 240px;	border-width: 10px;	animation: spinBG 5s infinite linear;
}
li:nth-child(2){	margin-left: -137px;	margin-top: -137px;	z-index: 1;	width: 270px;	height: 270px;	border-width: 2px;	border-style: dotted;	box-shadow: 0px 0px 20px rgba(23,246,251, .5);	animation: spinBG2 2s infinite linear;
}
li:nth-child(3){	margin-left: -150px;	margin-top: -150px;	z-index: 1;	width: 296px;	height: 296px;	border-width: 2px;	box-shadow: inset 0px 0px 25px rgba(23,246,251, .25);	animation: spinBG 12s infinite linear;
}
li:nth-child(4){	margin-left: -170px;	margin-top: -170px;	z-index: 1;	width: 330px;	height: 330px;	border-width: 5px;	border-style: solid;	box-shadow: inset 0px 0px 25px rgba(23,246,251,1.0);	animation: spinBG3 8s infinite linear;
}
/*------------------------------------------- Animations
-------------------------------------------*/
@keyframes pulseGlow{	0% {text-shadow: 0px 0px 20px rgba(23,246,251, 0.75);}	50% {text-shadow: 0px 0px 40px rgba(23,246,251, 0.5); }	100%{text-shadow: 0px 0px 20px rgba(23,246,251, 0.75);}
}
@keyframes pulseShadow{	0% {box-shadow: 0px 0px 30px rgba(23,246,251, 0.25);}	50% {box-shadow: 0px 0px 30px rgba(23,246,251, 0.75);}	100%{box-shadow: 0px 0px 30px rgba(23,246,251, 0.25);}
}
@keyframes spinBG{	0% {transform: rotate(0deg);}	100%{transform: rotate(360deg);}
}
@keyframes spinBG2{	0%{	transform: rotate(360deg);	box-shadow: 0px 0px 1px rgba(23,246,251, 0.5);	}	50%{	transform: rotate(180deg);	box-shadow: 0px 0px 20px rgba(23,246,251, 0.5);	}	100%{	transform: rotate(0deg);	box-shadow: 0px 0px 1px rgba(23,246,251, 0.5);	}
}
@keyframes spinBG3{	0%{	transform: rotate(180deg);	box-shadow: 0px 0px 1px rgba(23,246,251, 0.1);	}	50%{	transform: rotate(0deg);	}	100%{	transform: rotate(-180deg);	}
}
Loading Pixels - Script Codes
Loading Pixels - Script Codes
Home Page Home
Developer Perthz Weerawat Weera
Username Perthz
Uploaded January 31, 2023
Rating 3
Size 3,371 Kb
Views 2,024
Do you need developer help for Loading Pixels?

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!

Perthz Weerawat Weera (Perthz) Script Codes
Create amazing captions 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!