"New Google Loader"
Bootstrap 4.1.1 Snippet by nirav.mandli

<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="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <!------ Include the above in your HEAD tag ----------> <link href='https://fonts.googleapis.com/css?family=Montserrat' rel='stylesheet' type='text/css'> <h1> <span>G</span> <span>o</span> <span>o</span> <span>g</span> <span>l</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: "Montserrat", sans-serif; font-size: 4em; text-align: center; letter-spacing: -8px; margin-top: 0; } 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: