CSS3 Loader Animation - Peeek

Size
3,854 Kb
Views
54,648

How do I make an css3 loader animation - peeek?

This is the loader animation that designed by Mikael Edwards and developed by Rıza Selçuk Saydam for Peeek.. What is a css3 loader animation - peeek? How do you make a css3 loader animation - peeek? This script and codes were developed by Rıza Selçuk Saydam on 02 August 2022, Tuesday.

CSS3 Loader Animation - Peeek Previews

CSS3 Loader Animation - Peeek - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>CSS3 Loader Animation - Peeek</title> <script src="http://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! */ .peeek-loading { background-color: #38d368; overflow: hidden; position: absolute; top: 0; bottom: 0; left: 0; right: 0; height: 100%; width: 100%;
}
.peeek-loading ul { position: absolute; left: calc(50% - 0.7em); top: calc(50% - 4.2em); display: inline-block; text-indent: 2.8em;
}
.peeek-loading ul li:after,
.peeek-loading ul:after { width: 1.4em; height: 1.4em; background-color: #fff; border-radius: 100%;
}
.peeek-loading ul li:after,
.peeek-loading ul:after { content: ""; display: block;
}
.peeek-loading ul:after { position: absolute; top: 2.8em;
}
.peeek-loading li { position: absolute; padding-bottom: 5.6em; top: 0; left: 0;
}
.peeek-loading li:nth-child(1) { transform: rotate(0deg); animation-delay: 0.125s;
}
.peeek-loading li:nth-child(1):after { animation-delay: 0.125s;
}
.peeek-loading li:nth-child(2) { transform: rotate(36deg); animation-delay: 0.25s;
}
.peeek-loading li:nth-child(2):after { animation-delay: 0.25s;
}
.peeek-loading li:nth-child(3) { transform: rotate(72deg); animation-delay: 0.375s;
}
.peeek-loading li:nth-child(3):after { animation-delay: 0.375s;
}
.peeek-loading li:nth-child(4) { transform: rotate(108deg); animation-delay: 0.5s;
}
.peeek-loading li:nth-child(4):after { animation-delay: 0.5s;
}
.peeek-loading li:nth-child(5) { transform: rotate(144deg); animation-delay: 0.625s;
}
.peeek-loading li:nth-child(5):after { animation-delay: 0.625s;
}
.peeek-loading li:nth-child(6) { transform: rotate(180deg); animation-delay: 0.75s;
}
.peeek-loading li:nth-child(6):after { animation-delay: 0.75s;
}
.peeek-loading li:nth-child(7) { transform: rotate(216deg); animation-delay: 0.875s;
}
.peeek-loading li:nth-child(7):after { animation-delay: 0.875s;
}
.peeek-loading li:nth-child(8) { transform: rotate(252deg); animation-delay: 1s;
}
.peeek-loading li:nth-child(8):after { animation-delay: 1s;
}
.peeek-loading li:nth-child(9) { transform: rotate(288deg); animation-delay: 1.125s;
}
.peeek-loading li:nth-child(9):after { animation-delay: 1.125s;
}
.peeek-loading li:nth-child(10) { transform: rotate(324deg); animation-delay: 1.25s;
}
.peeek-loading li:nth-child(10):after { animation-delay: 1.25s;
}
.peeek-loading li { animation: dotAnimation 2.5s infinite;
}
@keyframes dotAnimation { 0%, 55%, 100% { padding: 0 0 5.6em 0; } 5%,50% { padding: 2.8em 0; }
}
.peeek-loading li:after { animation: dotAnimationTwo 2.5s infinite;
}
@-webkit-keyframes dotAnimationTwo { 0%, 55%, 100% { opacity: 1; transform: scale(1); } 5%,50% { opacity: .5; transform: scale(0.5); }
} </style> <script src="https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script>
</head>
<body> <div class='peeek-loading'> <ul> <li></li> <li></li> <li></li> <li></li> <li></li> <li></li> <li></li> <li></li> <li></li> <li></li> </ul>
</div> <script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script> <script src="js/index.js"></script>
</body>
</html>

CSS3 Loader Animation - Peeek - Script Codes CSS Codes

.peeek-loading { background-color: #38d368; overflow: hidden; position: absolute; top: 0; bottom: 0; left: 0; right: 0; height: 100%; width: 100%;
}
.peeek-loading ul { position: absolute; left: calc(50% - 0.7em); top: calc(50% - 4.2em); display: inline-block; text-indent: 2.8em;
}
.peeek-loading ul li:after,
.peeek-loading ul:after { width: 1.4em; height: 1.4em; background-color: #fff; border-radius: 100%;
}
.peeek-loading ul li:after,
.peeek-loading ul:after { content: ""; display: block;
}
.peeek-loading ul:after { position: absolute; top: 2.8em;
}
.peeek-loading li { position: absolute; padding-bottom: 5.6em; top: 0; left: 0;
}
.peeek-loading li:nth-child(1) { transform: rotate(0deg); animation-delay: 0.125s;
}
.peeek-loading li:nth-child(1):after { animation-delay: 0.125s;
}
.peeek-loading li:nth-child(2) { transform: rotate(36deg); animation-delay: 0.25s;
}
.peeek-loading li:nth-child(2):after { animation-delay: 0.25s;
}
.peeek-loading li:nth-child(3) { transform: rotate(72deg); animation-delay: 0.375s;
}
.peeek-loading li:nth-child(3):after { animation-delay: 0.375s;
}
.peeek-loading li:nth-child(4) { transform: rotate(108deg); animation-delay: 0.5s;
}
.peeek-loading li:nth-child(4):after { animation-delay: 0.5s;
}
.peeek-loading li:nth-child(5) { transform: rotate(144deg); animation-delay: 0.625s;
}
.peeek-loading li:nth-child(5):after { animation-delay: 0.625s;
}
.peeek-loading li:nth-child(6) { transform: rotate(180deg); animation-delay: 0.75s;
}
.peeek-loading li:nth-child(6):after { animation-delay: 0.75s;
}
.peeek-loading li:nth-child(7) { transform: rotate(216deg); animation-delay: 0.875s;
}
.peeek-loading li:nth-child(7):after { animation-delay: 0.875s;
}
.peeek-loading li:nth-child(8) { transform: rotate(252deg); animation-delay: 1s;
}
.peeek-loading li:nth-child(8):after { animation-delay: 1s;
}
.peeek-loading li:nth-child(9) { transform: rotate(288deg); animation-delay: 1.125s;
}
.peeek-loading li:nth-child(9):after { animation-delay: 1.125s;
}
.peeek-loading li:nth-child(10) { transform: rotate(324deg); animation-delay: 1.25s;
}
.peeek-loading li:nth-child(10):after { animation-delay: 1.25s;
}
.peeek-loading li { animation: dotAnimation 2.5s infinite;
}
@keyframes dotAnimation { 0%, 55%, 100% { padding: 0 0 5.6em 0; } 5%,50% { padding: 2.8em 0; }
}
.peeek-loading li:after { animation: dotAnimationTwo 2.5s infinite;
}
@-webkit-keyframes dotAnimationTwo { 0%, 55%, 100% { opacity: 1; transform: scale(1); } 5%,50% { opacity: .5; transform: scale(0.5); }
}

CSS3 Loader Animation - Peeek - Script Codes JS Codes

/***
CSS3 Loader Animation - Peeek
Design: Mikael Edwards http://drbl.in/jccQ
Front-End: Rıza Selçuk Saydam http:/webmagazin.co
***/
CSS3 Loader Animation - Peeek - Script Codes
CSS3 Loader Animation - Peeek - Script Codes
Home Page Home
Developer Rıza Selçuk Saydam
Username rss
Uploaded August 02, 2022
Rating 4.5
Size 3,854 Kb
Views 54,648
Do you need developer help for CSS3 Loader Animation - Peeek?

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!

Rıza Selçuk Saydam (rss) Script Codes
Create amazing web content 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!