Cat loader

Developer
Size
3,899 Kb
Views
34,408

How do I make an cat loader?

I'm watching you!. What is a cat loader? How do you make a cat loader? This script and codes were developed by Massimo on 17 September 2022, Saturday.

Cat loader Previews

Cat loader - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Cat loader</title> <link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="loader"> <div class="track"> <div class="mouse"></div> </div> <div class="face"> <div class="ears-container"></div> <div class="eyes-container"> <div class="eye"></div> <div class="eye"></div> </div> <div class="phiz"> <div class="nose"></div> <div class="lip"></div> <div class="mouth"></div> </div> </div>
</div>
</body>
</html>

Cat loader - Script Codes CSS Codes

@-webkit-keyframes rotate { 0% { transform: rotate(-0.08turn); } 100% { transform: rotate(-1.08turn); }
}
@-moz-keyframes rotate { 0% { transform: rotate(-0.08turn); } 100% { transform: rotate(-1.08turn); }
}
@-o-keyframes rotate { 0% { transform: rotate(-0.08turn); } 100% { transform: rotate(-1.08turn); }
}
@keyframes rotate { 0% { transform: rotate(-0.08turn); } 100% { transform: rotate(-1.08turn); }
}
@-webkit-keyframes hideEye { 0%, 10%, 85% { margin-top: 0; height: 50px; } 30%, 65% { margin-top: 20px; height: 30px; }
}
@-moz-keyframes hideEye { 0%, 10%, 85% { margin-top: 0; height: 50px; } 30%, 65% { margin-top: 20px; height: 30px; }
}
@-o-keyframes hideEye { 0%, 10%, 85% { margin-top: 0; height: 50px; } 30%, 65% { margin-top: 20px; height: 30px; }
}
@keyframes hideEye { 0%, 10%, 85% { margin-top: 0; height: 50px; } 30%, 65% { margin-top: 20px; height: 30px; }
}
@-webkit-keyframes blink { 0%, 10%, 85% { bottom: 0; } 30%, 65% { bottom: 20px; } 0% { transform: rotate(-0.08turn); } 100% { transform: rotate(-1.08turn); }
}
@-moz-keyframes blink { 0%, 10%, 85% { bottom: 0; } 30%, 65% { bottom: 20px; } 0% { transform: rotate(-0.08turn); } 100% { transform: rotate(-1.08turn); }
}
@-o-keyframes blink { 0%, 10%, 85% { bottom: 0; } 30%, 65% { bottom: 20px; } 0% { transform: rotate(-0.08turn); } 100% { transform: rotate(-1.08turn); }
}
@keyframes blink { 0%, 10%, 85% { bottom: 0; } 30%, 65% { bottom: 20px; } 0% { transform: rotate(-0.08turn); } 100% { transform: rotate(-1.08turn); }
}
body { margin: 0; background: #5e4674; overflow: hidden;
}
body .loader { position: absolute; left: 50%; top: 50%; width: 260px; height: 260px; margin-left: -130px; margin-top: -130px;
}
body .loader .track { width: 100%; height: 100%; border: solid white; border-width: 5px 5px 3px 0; border-top-color: transparent; border-radius: 50%; margin-left: -3px; margin-top: -3px; -webkit-animation: rotate 3s infinite linear; -moz-animation: rotate 3s infinite linear; -o-animation: rotate 3s infinite linear; animation: rotate 3s infinite linear;
}
body .loader .track .mouse { position: absolute; right: 31px; top: 18px; width: 25px; height: 25px; background: white; border-radius: 80% 0 55% 50% / 55% 0 80% 50%; transform: rotate(-95deg);
}
body .loader .track .mouse:before, body .loader .track .mouse:after { position: absolute; content: ''; width: 9px; height: 9px; border-radius: 50%; background: inherit;
}
body .loader .track .mouse:before { left: 5px; top: -4px;
}
body .loader .track .mouse:after { left: 20px; top: 11px;
}
body .loader .face { position: absolute; left: 50%; top: 50%; width: 130px; height: 130px; margin-left: -65px; margin-top: -65px;
}
body .loader .face:before, body .loader .face:after { position: absolute; content: ''; width: 50%; height: 100%;
}
body .loader .face:before { background: #c8c6c9; border-top-left-radius: 65px; border-bottom-left-radius: 55px;
}
body .loader .face:after { left: 50%; background: #d0ced1; border-top-right-radius: 65px; border-bottom-right-radius: 55px;
}
body .loader .face .ears-container { position: absolute; top: -8px; width: 130px; height: 50px;
}
body .loader .face .ears-container:before, body .loader .face .ears-container:after { position: absolute; content: ''; width: 0; height: 0; border-top: 35px solid transparent; border-bottom: 35px solid transparent;
}
body .loader .face .ears-container:before { border-left: 35px solid #c8c6c9;
}
body .loader .face .ears-container:after { right: 0; border-right: 35px solid #d0ced1;
}
body .loader .face .eyes-container { position: absolute; overflow: hidden; left: 50%; top: 30px; width: 106px; height: 50px; margin-left: -53px; z-index: 1; -webkit-animation: hideEye 3s infinite linear; -moz-animation: hideEye 3s infinite linear; -o-animation: hideEye 3s infinite linear; animation: hideEye 3s infinite linear;
}
body .loader .face .eyes-container .eye { position: relative; bottom: 0; float: left; width: 50px; height: 50px; border-radius: 50%; color: #c8c6c9; background: white; -webkit-animation: blink 3s infinite linear; -moz-animation: blink 3s infinite linear; -o-animation: blink 3s infinite linear; animation: blink 3s infinite linear;
}
body .loader .face .eyes-container .eye:after { position: absolute; content: ''; top: 4px; right: 14px; width: 12px; height: 12px; border-radius: inherit; background: #838091;
}
body .loader .face .eyes-container .eye:last-child { float: right; color: #d0ced1;
}
body .loader .face .phiz { position: absolute; left: 50%; top: 66px; width: 32px; height: 48px; margin-left: -16px; z-index: 1;
}
body .loader .face .phiz .nose { width: 100%; height: 15px; border-top-left-radius: 5px; border-top-right-radius: 5px; border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; background: #838091;
}
body .loader .face .phiz .lip { position: relative; left: 50%; width: 4px; height: 12px; margin-left: -2px; background: #838091;
}
body .loader .face .phiz .lip:before { position: absolute; content: ''; width: 100%; height: 5px; background: #767385;
}
body .loader .face .phiz .mouth { position: relative; left: 50%; width: 20px; height: 6px; margin-left: -13px; background: white; border: 3px solid #838091; border-bottom-right-radius: 12px; border-bottom-left-radius: 12px;
}
Cat loader - Script Codes
Cat loader - Script Codes
Home Page Home
Developer Massimo
Username _massimo
Uploaded September 17, 2022
Rating 4
Size 3,899 Kb
Views 34,408
Do you need developer help for Cat loader?

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!

Massimo (_massimo) Script Codes
Create amazing love letters 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!