아래 예제는 Loaders.css에서 기본 제공하는 애니메이션들인데, 필요하다면; Css 사용자 정의를 통해 움직임을 변경하거나 또 다른 자신만의 애니메이션을 만들어 쓸 수도 있다:

                    
                        
                    
                

빈 <div>를 더하거나 빼 보십시오..

            
                
            
        
[ 각 아이템들을 배치하기 위한 Css 플렉스박스 ]
                
                    .loaders {
                        display: flex; flex-direction: row; flex-wrap: wrap;
                        color: #fff; background: #516643;
                    } .loaders .loader {
                        display: flex; flex-direction: column; flex: 1 1 25%;
                        align-items: center; justify-content: center;
                        max-width: 25%; height: 200px;
                        border: 1px solid gray;
                    }