CSS text effect style : demo 158

Best jQuery

HTML

                        
Best jQuery

CSS

(Fonts required : Archivo Black)
                    .text-effect{
                        color: #fff;
                        font-family: 'Archivo Black', sans-serif;
                        font-size: 100px;
                        font-weight: 400;
                        text-align: center;
                    }
                    .text-effect span{
                        display: inline-block;
                        animation: move 3s ease-in-out infinite;
                    }
                    .text-effect span:nth-child(2) { animation-delay:0.5s;}
                    .text-effect span:nth-child(3) { animation-delay:  1s;}
                    .text-effect span:nth-child(4) { animation-delay:1.5s;}
                    .text-effect span:nth-child(5) { animation-delay:  2s;}
                    .text-effect span:nth-child(6) { animation-delay:2.5s;}
                    .text-effect span:nth-child(7) { animation-delay:  3s;}
                    .text-effect span:nth-child(8) { animation-delay:3.5s;}
                    .text-effect span:nth-child(9) { animation-delay:  4s;}
                    .text-effect span:nth-child(10){ animation-delay: 4.5s;}
                    @keyframes move{
                        0%{ transform: translate(-30%, 0); }
                        50%{ text-shadow: 0 25px 50px rgba(0, 0, 0, 0.75); }
                        100% { transform: translate(30%, 0); }
                    }
                    @media only screen and (max-width: 990px){
                        .text-effect{ font-size: 80px; }
                    }
                    @media only screen and (max-width: 767px){
                        .text-effect{ font-size: 60px; }
                    }
                    @media only screen and (max-width: 576px){
                        .text-effect{ font-size: 45px; }
                    }
                    
License Terms