@keyframes wip{
    0% {content: '';}
    25% {content: '.';}
    50% {content: '..';}
    75% {content: '...';}
}

#wiph::after{
    content: '';
    animation: 3s linear infinite wip;
}