Dark CSS

Create TikTok Like Loading Dots using Html CSS

Facebook
Twitter
WhatsApp

Code Preview

html Code

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Tik Tok Like Loader | CSS</title>
    <link rel="stylesheet" href="style.css">
</head>

<body>
    <div class="loader">
        <div class="ball ball-1"></div>
        <div class="ball ball-2"></div>
    </div>
</body>

</html>

css Code

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #e8e8e8;
}

.loader {
    display: flex;
}

.ball {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    mix-blend-mode: multiply;
}

.ball-1 {
    background-color: #fe2c55;
    animation: slide1 .7s ease-in-out infinite;
}

.ball-2 {
    background-color: #01f7ee;
    animation: slide2 .7s ease-in-out infinite;
}

@keyframes slide1 {

    0%,
    100% {
        transform: translateX(0);
        z-index: 1;
    }

    50% {
        transform: translateX(14px);
        z-index: 2;
    }
}

@keyframes slide2 {

    0%,
    100% {
        transform: translateX(0);
        z-index: 2;
    }

    50% {
        transform: translateX(-14px);
        z-index: 1;
    }
}