"Based off Google Loader"
Bootstrap 4.1.1 Snippet by freedawirl

<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,400i,500,500i,700,900,900i"> <!-- <h1> <span>G</span> <span>o</span> <span>T</span> <span>i</span> <span>m</span> <span>e</span> </h1> --> <div class="google-loader"> <span></span> <span></span> <span></span> <span></span> </div>
html, body { height: 100%; display: flex; align-items: center; justify-content: center; flex-direction: column; } .google-loader { display: block; } .google-loader span { display: inline-block; margin-top: 10px; height: 20px; width: 20px; border-radius: 50%; } .google-loader span:not(:first-child) { margin-left: 10px; } .google-loader span:nth-child(1) { background: #4285F4; animation: move 1s ease-in-out -0.25s infinite alternate; } .google-loader span:nth-child(2) { background: #DB4437; animation: move 1s ease-in-out -0.5s infinite alternate; } .google-loader span:nth-child(3) { background: #F4B400; animation: move 1s ease-in-out -0.75s infinite alternate; } .google-loader span:nth-child(4) { background: #0F9D58; animation: move 1s ease-in-out -1s infinite alternate; } @keyframes move { from { transform: translateY(-10px); } to { transform: translateY(5px); } } h1 { font-family: "roboto", sans-serif; font-size: 4em; font-weight:900; text-align: center; font-style:italic; letter-spacing: -8px; margin-top: 0; } h1 span { color: #404042; } /* h1 span:first-child { color: #4285F4; } h1 span:nth-child(2) { color: #DB4437; } h1 span:nth-child(3) { color: #F4B400; } h1 span:nth-child(4) { color: #4285F4; } h1 span:nth-child(5) { color: #0F9D58; } h1 span:last-child { color: #DB4437; transform: rotate(-20deg); display: inline-block; } */

Related: See More


Questions / Comments: