CSS animation "Heating"

Developer
Size
2,157 Kb
Views
54,648

How do I make an css animation "heating"?

What is a css animation "heating"? How do you make a css animation "heating"? This script and codes were developed by Ivan on 07 September 2022, Wednesday.

CSS animation "Heating" Previews

CSS animation "Heating" - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>CSS animation "Heating"</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <div class="heat first"></div>
<div class="heat two"></div>
<div class="heat three"></div>
<div class="heat four"></div>
<div class="heat five"></div>
<div class="battery-line battery"></div>
<div class="battery-1 battery"></div>
<div class="battery-2 battery"></div>
<div class="battery-3 battery"></div>
<div class="battery-4 battery"></div>
<div class="battery-5 battery"></div>
</body>
</html>

CSS animation "Heating" - Script Codes CSS Codes

body {	background: #34495e;
}
.heat {	position: absolute;	height: 20px;	width: 20px;	border: solid #e74c3c;	border-width: 5px;	border-radius: 0 0 30% 100%;	-webkit-transform: rotate(20deg);	-moz-transform: rotate(20deg);	-o-transform: rotate(20deg);	-ms-transform: rotate(20deg);	transform: rotate(20deg);	border-top-color: transparent;	border-right-color: transparent;	border-bottom-color: transparent;
}
.heat::after {	content: "";	height: 20px;	width: 20px;	border: 5px solid #e74c3c;	margin: 33% 0 0 -94%;	position: absolute;	border-radius: 0 0 30% 100%;	-webkit-transform: rotate(180deg);	-moz-transform: rotate(180deg);	-o-transform: rotate(180deg);	-ms-transform: rotate(180deg);	transform: rotate(180deg);	border-top-color: transparent;	border-right-color: transparent;	border-bottom-color: transparent;
}
.first {	margin: 100px 0 0 110px;	-webkit-animation: heatup 1.5s linear infinite, heatmove 3s linear infinite;	-moz-animation: heatup 1.5s linear infinite, heatmove 3s linear infinite;	-ms-animation: heatup 1.5s linear infinite, heatmove 3s linear infinite;	-o-animation: heatup 1.5s linear infinite, heatmove 3s linear infinite;	animation: heatup 1.5s linear infinite, heatmove 3s linear infinite;
}
.two {	margin: 75px 0 0 155px;	-webkit-animation: heatup 1.5s linear -.5s infinite, heatmove 3s linear -.5s infinite;	-moz-animation: heatup 1.5s linear -.5s infinite, heatmove 3s linear -.5s infinite;	-ms-animation: heatup 1.5s linear -.5s infinite, heatmove 3s linear -.5s infinite;	-o-animation: heatup 1.5s linear -.5s infinite, heatmove 3s linear -.5s infinite;	animation: heatup 1.5s linear -.5s infinite, heatmove 3s linear -.5s infinite;
}
.three {	margin: 100px 0 0 200px;	-webkit-animation: heatup 1.5s linear infinite, heatmove 3s linear infinite;	-moz-animation: heatup 1.5s linear infinite, heatmove 3s linear infinite;	-ms-animation: heatup 1.5s linear infinite, heatmove 3s linear infinite;	-o-animation: heatup 1.5s linear infinite, heatmove 3s linear infinite;	animation: heatup 1.5s linear infinite, heatmove 3s linear infinite;
}
.four {	margin: 75px 0 0 245px;	-webkit-animation: heatup 1.5s linear -.5s infinite, heatmove 3s linear -.5s infinite;	-moz-animation: heatup 1.5s linear -.5s infinite, heatmove 3s linear -.5s infinite;	-ms-animation: heatup 1.5s linear -.5s infinite, heatmove 3s linear -.5s infinite;	-o-animation: heatup 1.5s linear -.5s infinite, heatmove 3s linear -.5s infinite;	animation: heatup 1.5s linear -.5s infinite, heatmove 3s linear -.5s infinite;
}
.five {	margin: 100px 0 0 290px;	-webkit-animation: heatup 1.5s linear infinite, heatmove 3s linear infinite;	-moz-animation: heatup 1.5s linear infinite, heatmove 3s linear infinite;	-ms-animation: heatup 1.5s linear infinite, heatmove 3s linear infinite;	-o-animation: heatup 1.5s linear infinite, heatmove 3s linear infinite;	animation: heatup 1.5s linear infinite, heatmove 3s linear infinite;
}
@keyframes "heatup" { 0% { top: 20%;	-webkit-opacity: 0; } 25% { -webkit-opacity: .8; } 50% { -webkit-opacity: 1; } 75% { -webkit-opacity: .8; } 100% { top: -15%;	-webkit-opacity: 0; }
}
@-moz-keyframes heatup { 0% { top: 20%; } 25% { } 50% { } 75% { } 100% { top: -15%; }
}
@-webkit-keyframes "heatup" { 0% { top: 20%; -webkit-opacity: 0; } 25% { -webkit-opacity: .8; } 50% { -webkit-opacity: 1; } 75% { -webkit-opacity: .8; } 100% { top: -15%; -webkit-opacity: 0; }
}
@-ms-keyframes "heatup" { 0% { top: 20%; } 25% { } 50% { } 75% { } 100% { top: -15%; }
}
@-o-keyframes "heatup" { 0% { top: 20%; } 25% { } 50% { } 75% { } 100% { top: -15%; }
}
@keyframes "heatmove" { 0% { left: -5px; } 25% { left: 5px; } 50% { left: -5px; } 75% { left: 5px; } 100% { left: -5px; }
}
@-moz-keyframes heatmove { 0% { left: -5px; } 25% { left: 5px; } 50% { left: -5px; } 75% { left: 5px; } 100% { left: -5px; }
}
@-webkit-keyframes "heatmove" { 0% { left: -5px; } 25% { left: 5px; } 50% { left: -5px; } 75% { left: 5px; } 100% { left: -5px; }
}
@-ms-keyframes "heatmove" { 0% { left: -5px; } 25% { left: 5px; } 50% { left: -5px; } 75% { left: 5px; } 100% { left: -5px; }
}
@-o-keyframes "heatmove" { 0% { left: -5px; } 25% { left: 5px; } 50% { left: -5px; } 75% { left: 5px; } 100% { left: -5px; }
}
.battery {	background: #2980b9;	position: absolute;	-webkit-animation: redbattery 2s infinite;	-moz-animation: redbattery 2s infinite;	-ms-animation: redbattery 2s infinite;	-o-animation: redbattery 2s infinite;	animation: redbattery 2s infinite;
}
.battery-line {	height: 16px;	width: 230px;	margin: 237px 0 0 85px;
}
.battery-1,.battery-2,.battery-3,.battery-4,.battery-5 {	width: 30px;	height: 180px;
}
.battery-1 {	margin: 220px 0 0 95px;
}
.battery-2 {	margin: 220px 0 0 140px;
}
.battery-3 {	margin: 220px 0 0 185px;
}
.battery-4 {	margin: 220px 0 0 230px;
}
.battery-5 {	margin: 220px 0 0 275px;
}
@keyframes "redbattery" { 0% { }50% {	background: rgba(0,61,150,.5), rgba(255,0,51,.5); } 100% { } }
@-moz-keyframes redbattery { 0% { }50% { background: rgba(0,61,150,.5), rgba(255,0,51,.5); } 100% { } }
@-webkit-keyframes "redbattery" { 0% { }50% { background: rgba(0,61,150,.5), rgba(255,0,51,.5); } 100% { } }
@-ms-keyframes "redbattery" { 0% { }50% { background: rgba(0,61,150,.5), rgba(255,0,51,.5); } 100% { } }
@-o-keyframes "redbattery" { 0% { }50% { background: rgba(0,61,150,.5), rgba(255,0,51,.5); } 100% { } }
CSS animation "Heating" - Script Codes
CSS animation "Heating" - Script Codes
Home Page Home
Developer Ivan
Username Vany
Uploaded September 07, 2022
Rating 3
Size 2,157 Kb
Views 54,648
Do you need developer help for CSS animation "Heating"?

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!

Ivan (Vany) Script Codes
Create amazing art & images 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!