CSS text effect style : demo 205

Best jQuery

HTML

                        
Best jQuery

CSS

(Fonts required : Salsa)
                    .text-effect{
                        color: rgba(0, 0, 0, 0.2);
                        font-family: 'Salsa', cursive;
                        font-size: 100px;
                        font-weight: 700;
                        text-align: center;
                    }
                    .text-effect span{
                        display: inline-block;
                        animation: fade-animate 5s infinite;
                    }
                    .text-effect span:nth-child(2){ animation-delay: 0.2s; }
                    .text-effect span:nth-child(3){ animation-delay: 0.4s; }
                    .text-effect span:nth-child(4){ animation-delay: 0.6s; }
                    .text-effect span:nth-child(5){ animation-delay: 0.8s; }
                    .text-effect span:nth-child(6){ animation-delay: 1s; }
                    .text-effect span:nth-child(7){ animation-delay: 1.2s; }
                    .text-effect span:nth-child(8){ animation-delay: 1.4s; }
                    .text-effect span:nth-child(9){ animation-delay: 1.6s; }
                    .text-effect span:nth-child(10){ animation-delay: 1.8s; }
                    @keyframes fade-animate{
                        0%, 35%, 100%{ color: rgba(0, 0, 0, 0.2); }
                        60%, 80%{ color: #358fe2; }
                    }
                    @media only screen and (max-width: 990px){
                        .text-effect{ font-size: 70px; }
                    }
                    @media only screen and (max-width: 767px){
                        .text-effect{ font-size: 60px; }
                    }
                    @media only screen and (max-width: 576px){
                        .text-effect{ font-size: 40px; }
                    }
                    
License Terms