How to create Loading Animation using HTML & CSS

Hello friends, today we will be going to create speech text reader Using Html, CSS and JavaScript. I have posted many videos and articles before related to the JavaScript project, now this the something new that we are going to build.

Video Tutorial of How to create speech text reader Using Html, CSS and JavaScript


As you have seen on the given video tutorial of  Speech Text Reader Using Html, CSS and JavaScrip, 

If you are feeling bored watching the given video tutorial of Speech Text Reader Using Html, CSS and JavaScript then you can copy or download the given codes below:


Speech Text Reader Using Html, CSS and JavaScript | Free Source Code

To create this program (Speech Text Reader). First, you need to create two Files one HTML File and another one is CSS File. After creating these files just paste the following codes in your file.

In the first place, make a HTML document with the name of index.html and glue the given codes in your HTML record. Keep in mind, you've to make a document with .html extension.
<!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>Loading Animation Using HTML and CSS</title>
    <link rel="stylesheet" href="style.css">
</head>
<body>
    <div class="loader">
        <div class="ball"></div>
        <div class="ball"></div>
        <div class="ball"></div>
        <span>Loading...</span>
    </div>
</body>
</html>
Second, make a CSS record with the name of style.css and glue the given codes in your CSS document. Keep in mind, you've to make a record with .css extension.
*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    font-family: sans-serif;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: rgb(57, 159, 255);
}
.loader{
    height: 75px;
    width: 125px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
}
.loader span{
    font-size: 22px;
    text-transform: uppercase;
    color: #fff;
    margin: auto;
}
.loader .ball{
    width: 25px;
    height: 25px;
    background: #fff;
    border-radius: 50%;
    animation: animate 0.5s alternate infinite;
}
.ball:nth-child(2){
    animation-delay: 0.16s;
}
/* .ball:nth-child(3){
    animation-delay: 0.32s;
} */


@keyframes animate{
    0%{
        transform: scaleX(1.25);
    }
    100%{
        transform: translateY(-50px) scaleX(1);
    }
}
That’s all, now you’ve successfully created a program Speech Text Reader Using Html, CSS and JavaScrip. If your code doesn’t work or you’ve faced any error/problem, please download the source code files from the given download button. It’s free and a .zip file will be downloaded then you’ve to extract it.
Click on the following download button to download all source code files.


Download Now
Please Wait...
Direct Link click here.

How can I help you

Post a Comment

How can I help you

Post a Comment (0)

Previous Post Next Post