Swimming dude loader

Developer
Size
3,656 Kb
Views
18,216

How do I make an swimming dude loader?

Forked this amazing olympic swimmer and made it a loader...Forked from natalieweesh's Pen swimming dude.. What is a swimming dude loader? How do you make a swimming dude loader? This script and codes were developed by Tbleckert on 16 October 2022, Sunday.

Swimming dude loader Previews

Swimming dude loader - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Swimming dude loader</title> <meta name="viewport" content="width=device-width"> <link rel="stylesheet" href="css/style.css">
</head>
<body> <div class="loader"> <div class="guy-swimming"> <div class="water"></div> <article class="guy"> <section class="head"></section> <section class="torso"></section> <section class="arm"><div class="bicep"></div></section> <section class="arm right"><div class="bicep"></div></section> <section class="leg"></section> <section class="leg right"></section> </article> </div>
</div>
</body>
</html>

Swimming dude loader - Script Codes CSS Codes

@-webkit-keyframes bicep { 20% { -webkit-transform: rotate(100deg); transform: rotate(100deg); } 50% { -webkit-transform: rotate(20deg); transform: rotate(20deg); } 80% { -webkit-transform: rotate(-40deg); transform: rotate(-40deg); } 90% { -webkit-transform: rotate(-90deg); transform: rotate(-90deg); } 100% { -webkit-transform: rotate(-130deg); transform: rotate(-130deg); }
}
@keyframes bicep { 20% { -webkit-transform: rotate(100deg); transform: rotate(100deg); } 50% { -webkit-transform: rotate(20deg); transform: rotate(20deg); } 80% { -webkit-transform: rotate(-40deg); transform: rotate(-40deg); } 90% { -webkit-transform: rotate(-90deg); transform: rotate(-90deg); } 100% { -webkit-transform: rotate(-130deg); transform: rotate(-130deg); }
}
@-webkit-keyframes forearm { 20% { -webkit-transform: rotate(240deg); transform: rotate(240deg); } 50% { -webkit-transform: rotate(330deg); transform: rotate(330deg); } 80% { -webkit-transform: rotate(370deg); transform: rotate(370deg); } 90% { -webkit-transform: rotate(360deg); transform: rotate(360deg); } 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}
@keyframes forearm { 20% { -webkit-transform: rotate(240deg); transform: rotate(240deg); } 50% { -webkit-transform: rotate(330deg); transform: rotate(330deg); } 80% { -webkit-transform: rotate(370deg); transform: rotate(370deg); } 90% { -webkit-transform: rotate(360deg); transform: rotate(360deg); } 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}
body { font-family: verdana, sans-serif; font-size: 0.8em;
}
@-webkit-keyframes breathing-head { 16.5% { border-top: 1px solid black; bottom: 1px; } 33% { border-top: 8px solid black; bottom: -1px; } 49.5% { border-top: 8px solid black; bottom: -1px; } 66% { border-top: 16px solid black; bottom: 1px; } 82.5% { border-top: 8px solid black; bottom: -1px; } 100% { border-top: 8px solid black; bottom: -1px; }
}
@keyframes breathing-head { 16.5% { border-top: 1px solid black; bottom: 1px; } 33% { border-top: 8px solid black; bottom: -1px; } 49.5% { border-top: 8px solid black; bottom: -1px; } 66% { border-top: 16px solid black; bottom: 1px; } 82.5% { border-top: 8px solid black; bottom: -1px; } 100% { border-top: 8px solid black; bottom: -1px; }
}
@-webkit-keyframes thigh-moving { 25% { -webkit-transform: rotate(20deg); transform: rotate(20deg); } 50% { -webkit-transform: rotate(10deg); transform: rotate(10deg); } 75% { -webkit-transform: rotate(5deg); transform: rotate(5deg); }
}
@keyframes thigh-moving { 25% { -webkit-transform: rotate(20deg); transform: rotate(20deg); } 50% { -webkit-transform: rotate(10deg); transform: rotate(10deg); } 75% { -webkit-transform: rotate(5deg); transform: rotate(5deg); }
}
@-webkit-keyframes shin-moving { 25% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 50% { -webkit-transform: rotate(-10deg); transform: rotate(-10deg); } 75% { -webkit-transform: rotate(-30deg); transform: rotate(-30deg); }
}
@keyframes shin-moving { 25% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 50% { -webkit-transform: rotate(-10deg); transform: rotate(-10deg); } 75% { -webkit-transform: rotate(-30deg); transform: rotate(-30deg); }
}
.guy-swimming { height: 70px; width: 100px;
}
.guy { position: absolute; top: 50%; margin-top: 5px;
}
.guy .leg { background: #966440; width: 40px; height: 8px; border-radius: 5px; left: 75px; bottom: 1px; -webkit-transform-origin: 0 center; transform-origin: 0 center; -webkit-transform: rotate(15deg); transform: rotate(15deg); -webkit-animation-name: thigh-moving; animation-name: thigh-moving; -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-iteration-count: infinite; animation-iteration-count: infinite; position: absolute;
}
.guy .leg.right { background: #AF7B4B; -webkit-animation-delay: 0.5s; animation-delay: 0.5s;
}
.guy .leg.right:after { background: #AF7B4B; -webkit-animation-delay: 0.5s; animation-delay: 0.5s;
}
.guy .leg:after { content: ""; display: block; position: absolute; width: 30px; height: 8px; -webkit-transform: rotate(-15deg); transform: rotate(-15deg); -webkit-animation-name: shin-moving; animation-name: shin-moving; -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-iteration-count: infinite; animation-iteration-count: infinite; transform: rotate(-15deg); border-radius: 5px; background: #966440; left: 36px; -webkit-transform-origin: 0 center; transform-origin: 0 center;
}
.guy .torso { background: #966440; width: 40px; height: 8px; border-radius: 5px; position: absolute; bottom: 1px; left: 40px;
}
.guy .head { width: 16px; height: 16px; border-radius: 8px; background: #966440; bottom: -1px; left: 25px; position: absolute; border-top: 8px solid black; box-sizing: border-box; -webkit-animation-name: breathing-head; animation-name: breathing-head; -webkit-animation-duration: 9s; animation-duration: 9s; -webkit-animation-iteration-count: infinite; animation-iteration-count: infinite;
}
.guy .arm { position: absolute; bottom: 8px;
}
.guy .arm.right .bicep { z-index: -1; -webkit-animation-delay: 0; animation-delay: 0; background: #966440;
}
.guy .arm.right .bicep:after { -webkit-animation-delay: 0; animation-delay: 0; background: #966440;
}
.guy .arm .bicep { width: 20px; height: 8px; background: #AF7B4B; border-radius: 5px; position: absolute; left: 28px; -webkit-transform-origin: 100% center; transform-origin: 100% center; -webkit-transform: rotate(180deg); transform: rotate(180deg); -webkit-animation-name: bicep; animation-name: bicep; -webkit-animation-duration: 3s; animation-duration: 3s; -webkit-animation-iteration-count: infinite; animation-iteration-count: infinite; -webkit-animation-delay: 1.5s; animation-delay: 1.5s;
}
.guy .arm .bicep:after { content: ""; display: block; position: absolute; width: 25px; height: 8px; background: #AF7B4B; border-radius: 5px; right: 15px; -webkit-transform-origin: 100% center; transform-origin: 100% center; -webkit-transform: rotate(90deg); transform: rotate(90deg); -webkit-animation-name: forearm; animation-name: forearm; -webkit-animation-duration: 3s; animation-duration: 3s; -webkit-animation-iteration-count: infinite; animation-iteration-count: infinite; -webkit-animation-delay: 1.5s; animation-delay: 1.5s;
}
.water { opacity: 0.5; position: absolute; bottom: 0; left: 0; height: 75px; width: 100%; background: lightblue; z-index: 10;
}
.loader { position: absolute; top: 50%; left: 50%; width: 150px; height: 150px; margin: -75px 0 0 -75px; border-radius: 50%; overflow: hidden; box-shadow: 0 0 25px rgba(0, 0, 0, 0.15); cursor: progress; z-index: 100;
}
Swimming dude loader - Script Codes
Swimming dude loader - Script Codes
Home Page Home
Developer Tbleckert
Username tbleckert
Uploaded October 16, 2022
Rating 3
Size 3,656 Kb
Views 18,216
Do you need developer help for Swimming dude 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!

Tbleckert (tbleckert) 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!