Saturday, October 19, 2019

Loading Screen Animation Using Only HTML and CSS

In this article I would like to share the work of my good friend and fellow software engineer Sir Ernel Fadriguilan he wrote a web application called Loading Screen Animation Using Only HTML and CSS.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking and Arduino Project development at a very affordable price.



Sample Program Output


Program Listing

index.html

<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="loading">
<div class="obj"></div>
<div class="obj"></div>
<div class="obj"></div>
<div class="obj"></div>
<div class="obj"></div>
<div class="obj"></div>
<div class="obj"></div>
<div class="obj"></div>
</div>
</body>
</html>

style.css

body
{
margin: 0;
padding: 0;
background: #2980b9;
}

.loading
{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
height: 40px;
display: flex;
align-itims: center;
}

.obj
{
width: 6px;
height: 40px;
background: white;
margin: 0 3px;
border-radius: 10px;
animation: loading 0.8s infinite;
}

.obj:nth-child(2){
animation-delay: 0.1s;
}

.obj:nth-child(3){
animation-delay: 0.2s;
}

.obj:nth-child(4){
animation-delay: 0.3s;
}

.obj:nth-child(5){
animation-delay: 0.4s;
}

.obj:nth-child(6){
animation-delay: 0.5s;
}

.obj:nth-child(7){
animation-delay: 0.6s;
}

.obj:nth-child(8){
animation-delay: 0.7s;
}


@keyframes loading {
0%
{
height: 0;
}
50%
{
height: 40px;
}
100%
{
height: 0;
}
}



No comments:

Post a Comment