Coding BD given here Creative CSS Loading Animations Effects. We create css glowing loading animation effects. It is the most important part Of Pure css animation tutorial. We have given more importance to css effects. We have used a css glowing effects animation because they need high effects. Thank you so much.
Create a Payoneer Account & Earn 25$:→ https://www.payoneer.com/raf/?rid=75EACA0E-2937-4D6B-A225-4255EB9B758A
Create a Fiverr Account & Earn 100$:→ http://www.fiverr.com/s2/83f49a18f7
?? If You like this video Please like, share and subscribe This video.??
?? Check Others Programming Video?
➡️How To Create Login Form In HTML and CSS: https://www.youtube.com/watch?v=51t-kR8MUvY
➡️ contact page design with map using html css: https://www.youtube.com/watch?v=RC2-bq4fBYI
➡️ Pure sliding tabs using html and css: https://www.youtube.com/watch?v=QonCizKyHrs
➡️ Animated Background Image Loop Animation: https://www.youtube.com/watch?v=7HyTFr5kNSU&t=284s
➡️ water wave background animation effects: https://www.youtube.com/watch?v=dnCfBet94r8&t=49s
➡️ How to Download Source code in Coding BD: https://www.youtube.com/watch?v=WXAZ-BScKBE&t=3s
➡️ Responsive website html css javascript | part( 1 ): https://www.youtube.com/watch?v=g0ART2Jc3yw&t=3s
➡️ Responsive Services Section: https://www.youtube.com/watch?v=wvLkyrkoS_w&t=69s
➡️ Plane animation only html css: https://www.youtube.com/watch?v=XcYlfp8sFX0
➡️ CSS Responsive CARD Hover Effects & Adding Stroke to Text | Html5 CSS3 2021: https://www.youtube.com/watch?v=QVMJ5PdX7Ag&t=14s
➡️ Neon Light Button Animation Effects on Hover | CSS Snake Border: https://www.youtube.com/watch?v=GtVSF-efdJQ&t=102s
➡️ Responsive Box Model Web Design Using CSS Flexbox: https://www.youtube.com/watch?v=03RuVB6B5KQ&t=0s
➡️ Digital Clock with Animated Progress-bar | HTML CSS & Vanilla Javascript: https://www.youtube.com/watch?v=6A6HpxMmfX4&t=0s
➡️ How to create a light to dark mode for HTML CSS & Vanilla Javascript 2021: https://www.youtube.com/watch?v=43FbR6ailIk&t=28s
➡️Scroll top button : https://www.youtube.com/watch?v=9fDEJkXQIIs&t=77s
Source code here: ( CSS Loading Animations Effects )
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Loader Animation</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="box"></div>
<div class="box"></div>
</div>
</body>
</html>
body{
margin: 0;
padding: 0;
background: #344;
}
.container{
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%,-50%);
width: 60px;
height: 60px;
}
.box{
position: absolute;
width: 30px;
height: 30px;
background: #e74c3c;
}
.box:nth-child(1){
animation: a1 2s infinite linear;
-webkit-animation: a1 2s infinite linear;
}
.box:nth-child(2){
animation: a2 2s infinite linear;
-webkit-animation: a2 2s infinite linear;
}
@keyframes a1 {
0%{
top: 0;
left: 0;
width: 30px;
height: 30px;
}
12.5%{
top: 0;
left: 0;
width: 60px;
height: 30px;
}
25%{
top: 0;
left: 0;
width: 60px;
height: 30px;
}
37.5%{
top: 0;
left: 30px;
width: 30px;
height: 30px;
}
50%{
top: 0;
left: 30px;
width: 30px;
height: 30px;
}
62.5%{
top: 0;
left: 30px;
width: 30px;
height: 60px;
}
75%{
top: 0;
left: 30px;
width: 30px;
height: 60px;
}
87.5%{
top: 30px;
left: 30px;
width: 30px;
height: 30px;
}
100%{
top: 30px;
left: 30px;
width: 30px;
height: 30px;
}
}
@keyframes a2 {
0%{
right: 0;
bottom: 0;
width: 30px;
height: 30px;
}
12.5%{
right: 0;
bottom: 0;
width: 30px;
height: 30px;
}
25%{
right: 0;
bottom: 0;
width: 60px;
height: 30px;
}
37.5%{
right: 0;
bottom: 0;
width: 60px;
height: 30px;
}
50%{
right: 30px;
bottom: 0;
width: 30px;
height: 30px;
}
62.5%{
right: 30px;
bottom: 0;
width: 30px;
height: 30px;
}
75%{
right: 30px;
bottom: 0;
width: 30px;
height: 60px;
}
87.5%{
right: 30px;
bottom: 0;
width: 30px;
height: 60px;
}
100%{
right: 30px;
bottom: 30px;
width: 30px;
height: 30px;
}
}
Don’t Forget to Follow me on all Social Network,
Facebook Page: https://www.facebook.com/codingbd816
LinkedIn: https://www.linkedin.com/in/sajjat8383/
Instagram: https://www.instagram.com/codingbd/
GitHub: https://github.com/cgsaleh8383
You can see How to create a light to dark mode for HTML CSS & Vanilla Javascript