RGB Loading

Developer
Size
3,210 Kb
Views
16,192

How do I make an rgb loading?

Simple Loading playing with RGB concept. What is a rgb loading? How do you make a rgb loading? This script and codes were developed by El Alemaño on 15 November 2022, Tuesday.

RGB Loading Previews

RGB Loading - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>RGB Loading</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css"> <link rel="stylesheet" href="css/style.css">
</head>
<body> <div class="wrapper-loading"> <div class="container"> <p class="loading"> <span class="l">L</span> <span class="o">o</span> <span class="a">a</span> <span class="d">d</span> <span class="i">i</span> <span class="n">n</span> <span class="g">g</span> </p> </div>
</div>
</body>
</html>

RGB Loading - Script Codes CSS Codes

body { background-color: #000; font-familiy: 'sans-serif'; font-size: 24px;
}
.wrapper-loading { color: #fff; position: relative; padding: 6em 0 0 0;
}
.wrapper-loading .container { margin: -2.5em auto 0; height: 5em; width: 14em;
}
.wrapper-loading .container .loading { text-transform: uppercase; text-align: center; font-size: 1.5em;
}
.wrapper-loading .container span { padding: 0 0 .4em 0; position: relative;
}
.wrapper-loading .container span:before, .wrapper-loading .container span:after { content: ''; display: block; position: absolute; left: 0; height: 2em; width: 100%;
}
.wrapper-loading .container span:before { bottom: 1.9em;
}
.wrapper-loading .container span:after { top: 1.9em;
}
.wrapper-loading .container .l, .wrapper-loading .container .d, .wrapper-loading .container .g { background-color: #ca0716; background-color: rgba(252, 9, 27, 0.8);
}
.wrapper-loading .container .o, .wrapper-loading .container .i { background-color: #22ca26; background-color: rgba(43, 252, 48, 0.8);
}
.wrapper-loading .container .a, .wrapper-loading .container .n { background-color: #1622c8; background-color: rgba(27, 42, 250, 0.8);
}
.wrapper-loading .container .l:before, .wrapper-loading .container .g:before { -webkit-animation: height-red .7s .1s infinite reverse; -khtml-animation: height-red .7s .1s infinite reverse; -moz-animation: height-red .7s .1s infinite reverse; -ms-animation: height-red .7s .1s infinite reverse; -o-animation: height-red .7s .1s infinite reverse; animation: height-red .7s .1s infinite reverse;
}
.wrapper-loading .container .l:after, .wrapper-loading .container .g:after { -webkit-animation: height-red .7s .1s infinite reverse; -khtml-animation: height-red .7s .1s infinite reverse; -moz-animation: height-red .7s .1s infinite reverse; -ms-animation: height-red .7s .1s infinite reverse; -o-animation: height-red .7s .1s infinite reverse; animation: height-red .7s .1s infinite reverse;
}
.wrapper-loading .container .o:before { -webkit-animation: height-green .7s .2s infinite reverse; -khtml-animation: height-green .7s .2s infinite reverse; -moz-animation: height-green .7s .2s infinite reverse; -ms-animation: height-green .7s .2s infinite reverse; -o-animation: height-green .7s .2s infinite reverse; animation: height-green .7s .2s infinite reverse;
}
.wrapper-loading .container .o:after { -webkit-animation: height-green .7s .2s infinite reverse; -khtml-animation: height-green .7s .2s infinite reverse; -moz-animation: height-green .7s .2s infinite reverse; -ms-animation: height-green .7s .2s infinite reverse; -o-animation: height-green .7s .2s infinite reverse; animation: height-green .7s .2s infinite reverse;
}
.wrapper-loading .container .n:before { -webkit-animation: height-blue .7s .2s infinite reverse; -khtml-animation: height-blue .7s .2s infinite reverse; -moz-animation: height-blue .7s .2s infinite reverse; -ms-animation: height-blue .7s .2s infinite reverse; -o-animation: height-blue .7s .2s infinite reverse; animation: height-blue .7s .2s infinite reverse;
}
.wrapper-loading .container .n:after { -webkit-animation: height-blue .7s .2s infinite reverse; -khtml-animation: height-blue .7s .2s infinite reverse; -moz-animation: height-blue .7s .2s infinite reverse; -ms-animation: height-blue .7s .2s infinite reverse; -o-animation: height-blue .7s .2s infinite reverse; animation: height-blue .7s .2s infinite reverse;
}
.wrapper-loading .container .a:before { -webkit-animation: height-blue .7s .4s infinite reverse; -khtml-animation: height-blue .7s .4s infinite reverse; -moz-animation: height-blue .7s .4s infinite reverse; -ms-animation: height-blue .7s .4s infinite reverse; -o-animation: height-blue .7s .4s infinite reverse; animation: height-blue .7s .4s infinite reverse;
}
.wrapper-loading .container .a:after { -webkit-animation: height-blue .7s .4s infinite reverse; -khtml-animation: height-blue .7s .4s infinite reverse; -moz-animation: height-blue .7s .4s infinite reverse; -ms-animation: height-blue .7s .4s infinite reverse; -o-animation: height-blue .7s .4s infinite reverse; animation: height-blue .7s .4s infinite reverse;
}
.wrapper-loading .container .i:before { -webkit-animation: height-green .7s .4s infinite reverse; -khtml-animation: height-green .7s .4s infinite reverse; -moz-animation: height-green .7s .4s infinite reverse; -ms-animation: height-green .7s .4s infinite reverse; -o-animation: height-green .7s .4s infinite reverse; animation: height-green .7s .4s infinite reverse;
}
.wrapper-loading .container .i:after { -webkit-animation: height-green .7s .4s infinite reverse; -khtml-animation: height-green .7s .4s infinite reverse; -moz-animation: height-green .7s .4s infinite reverse; -ms-animation: height-green .7s .4s infinite reverse; -o-animation: height-green .7s .4s infinite reverse; animation: height-green .7s .4s infinite reverse;
}
.wrapper-loading .container .d:before { -webkit-animation: height-red .7s .6s infinite reverse; -khtml-animation: height-red .7s .6s infinite reverse; -moz-animation: height-red .7s .6s infinite reverse; -ms-animation: height-red .7s .6s infinite reverse; -o-animation: height-red .7s .6s infinite reverse; animation: height-red .7s .6s infinite reverse;
}
.wrapper-loading .container .d:after { -webkit-animation: height-red .7s .6s infinite reverse; -khtml-animation: height-red .7s .6s infinite reverse; -moz-animation: height-red .7s .6s infinite reverse; -ms-animation: height-red .7s .6s infinite reverse; -o-animation: height-red .7s .6s infinite reverse; animation: height-red .7s .6s infinite reverse;
}
@-webkit-keyframes height-red { 0% { height: 0; background-color: #fc091b; } 50% { height: 2em; background-color: #000; } 100% { height: 0; background-color: #fc091b; }
}
@-moz-keyframes height-red { 0% { height: 0; background-color: #fc091b; } 50% { height: 2em; background-color: #000; } 100% { height: 0; background-color: #fc091b; }
}
@-ms-keyframes height-red { 0% { height: 0; background-color: #fc091b; } 50% { height: 2em; background-color: #000; } 100% { height: 0; background-color: #fc091b; }
}
@-o-keyframes height-red { 0% { height: 0; background-color: #fc091b; } 50% { height: 2em; background-color: #000; } 100% { height: 0; background-color: #fc091b; }
}
@keyframes height-red { 0% { height: 0; background-color: #fc091b; } 50% { height: 2em; background-color: #000; } 100% { height: 0; background-color: #fc091b; }
}
@-webkit-keyframes height-blue { 0% { height: 0; background-color: #1b2afa; } 50% { height: 2em; background-color: #000; } 100% { height: 0; background-color: #1b2afa; }
}
@-moz-keyframes height-blue { 0% { height: 0; background-color: #1b2afa; } 50% { height: 2em; background-color: #000; } 100% { height: 0; background-color: #1b2afa; }
}
@-ms-keyframes height-blue { 0% { height: 0; background-color: #1b2afa; } 50% { height: 2em; background-color: #000; } 100% { height: 0; background-color: #1b2afa; }
}
@-o-keyframes height-blue { 0% { height: 0; background-color: #1b2afa; } 50% { height: 2em; background-color: #000; } 100% { height: 0; background-color: #1b2afa; }
}
@keyframes height-blue { 0% { height: 0; background-color: #1b2afa; } 50% { height: 2em; background-color: #000; } 100% { height: 0; background-color: #1b2afa; }
}
@-webkit-keyframes height-green { 0% { height: 0; background-color: #2bfc30; } 50% { height: 2em; background-color: #000; } 100% { height: 0; background-color: #2bfc30; }
}
@-moz-keyframes height-green { 0% { height: 0; background-color: #2bfc30; } 50% { height: 2em; background-color: #000; } 100% { height: 0; background-color: #2bfc30; }
}
@-ms-keyframes height-green { 0% { height: 0; background-color: #2bfc30; } 50% { height: 2em; background-color: #000; } 100% { height: 0; background-color: #2bfc30; }
}
@-o-keyframes height-green { 0% { height: 0; background-color: #2bfc30; } 50% { height: 2em; background-color: #000; } 100% { height: 0; background-color: #2bfc30; }
}
@keyframes height-green { 0% { height: 0; background-color: #2bfc30; } 50% { height: 2em; background-color: #000; } 100% { height: 0; background-color: #2bfc30; }
}
RGB Loading - Script Codes
RGB Loading - Script Codes
Home Page Home
Developer El Alemaño
Username elalemanyo
Uploaded November 15, 2022
Rating 3
Size 3,210 Kb
Views 16,192
Do you need developer help for RGB Loading?

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!

El Alemaño (elalemanyo) Script Codes
Create amazing sales emails 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!