Create Awesome Custom Loading Dots Rainbow Using HTML & CSS

Hello viewsers, now in this blog you’ll learn how to build a Create Awesome Custom Loading Dots rainbow Using HTML & CSS. Previously I have shared a Create Awesome Battery Animation Effect Using HTML & CSS, today it is time to develop a Working HTML, CSS that is using

Create Awesome Custom Loading Dots rainbow Using HTML & CSS
Create Awesome Custom Loading Dots rainbow Using HTML & CSS

Create Awesome Custom Loading Dots rainbow Using HTML & CSS This can be a Awesome Custom Loading Dots rainbow as you care able to see when you look at the picture. You will discover a Awesome Custom Loading Dots rainbow the same as this for a very website that is familiar CodePen, but that program will be very difficult. Then surely problematic for you to comprehend if you're a novice or viewing for quick rule.


When you look at the image, there are many buttons and figures. Whenever you visit that key this is certainly specific the amount of that button may be shown from the screen. If you’re feeling difficult to know very well what i will be saying. You can watch a video that is strong the program (Create Awesome Custom Loading Dots rainbow Using HTML & CSS).


Video Tutorial of Awesome Custom Loading Dots rainbow

You will be hoped by me have actually recognized the styles, principles, and codes. This video clip is believed by me personally will help beginners to understand CSS in depth. If you want to get the source signal of this system (Create Awesome Custom Loading Dots rainbow Using HTML & CSS). It is possible to obtain it from the link which can be given just below.


You are able to build this Create Awesome Custom Loading Dots rainbow according to demands following a modifications being few. Also, it is possible to renovate this system to just take this Create Awesome Custom Loading Dots rainbow  into the degree that is next.


Create Awesome Custom Loading Dots rainbow Using HTML & CSS [Source Codes]

To create this program (Create Awesome Custom Loading Dots rainbow Using HTML & CSS). First, you need to develop two Files one HTML File and a different one is CSS File. After generating these data just paste the rules which can be following your file.

Read  Also: Full Awesome 3D Cartoon Push Button Snippet HTML & CSS

First, create an HTML file with all the true name of index.html and paste the given rules in your HTML file. Remember, you’ve to make a file with .html expansion.

<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8">

<title>css skill bar</title>

<link rel="stylesheet" type="text/css" href="style.css">

</head>

<body>

<div class="skillBox">

<span class="html"></span>

<span class="css"></span>

<span class="javascript"></span>

<span class="php"></span>

</div>

</body>


</html>

Second, create a CSS file aided by the true title of style.css and paste the given codes in your CSS file. Remember, you’ve to produce a file with .css extension.

*{

margin: 0;

padding: 0;

box-sizing: border-box;

}

body{

display: flex;

justify-content: center;

align-items: center;

height: 100vh;

width: 100%;

background-color: #262626ff;

}

.skillBox{

display: flex;

justify-content: flex-start;

align-items: center;

position: relative;

height: 50px;

width: 400px;

border-radius: 50px;

box-shadow: 1px 1px 40px black;

cursor: pointer;

animation: anime 2s ease forwards;

}

.html{

position: relative;

height: 100%;

width: 45%;

background-color: red;

border-top-left-radius: 50px;

border-bottom-left-radius: 50px;

}

.css{

position: relative;

height: 100%;

width: 25%;

background-color: dodgerblue;

}

.javascript{

position: relative;

height: 100%;

width: 20%;

background-color: orange;

}

.php{

position: relative;

height: 100%;

width: 10%;

background-color: limegreen;

border-top-right-radius: 50px;

border-bottom-right-radius: 50px;

}

span::after{

content: '';

display: flex;

justify-content: center;

align-items: center;

position: absolute;

height: 30px;

width: 160px;

bottom: 60px;

left: 50%;

transform: translate(-50%);

font-size: 20px;

font-weight: 600;

font-family: sans-serif;

color: white;

transition: 0.5s;

border-radius: 50px;

opacity: 0;

}

.html::after{

content: 'HTML 45%';

background-color: red;

box-shadow: 1px 1px 40px red;

}

.css::after{

content: 'CSS 25%';

background-color: dodgerblue;

box-shadow: 1px 1px 40px dodgerblue;

}

.javascript::after{

content: 'JavaScript 20%';

background-color: orange;

box-shadow: 1px 1px 40px orange;

}

.php::after{

content: 'PHP 10%';

background-color: limegreen;

box-shadow: 1px 1px 40px limegreen;

}

span:hover::after{

opacity: 1;

}

@keyframes anime{

from{

width: 0px;

}

to{

width: 400px;

}

}

That’s all, so now you’ve effectively created a Create Awesome Custom Loading Dots rainbow Using HTML & CSS. Then kindly comment down or e mail us through the contact web page should your code doesn't work or you’ve faced any error/problem.

Post a Comment

Previous Post Next Post

Follow Me Google News