CSS text effect style : demo 163

Best jQuery

HTML

                        
Best jQuery

CSS

(Fonts required : Patrick Hand)
                    .text-effect{
                        color: rgb(156, 43, 201);
                        font-family: 'Patrick Hand', cursive;
                        font-size: 100px;
                        font-weight: 400;
                        text-align: center;
                    }
                    .text-effect span{
                        display: inline-block;
                        animation: animate 2s infinite linear;
                    }
                    .text-effect span:nth-child(2) { animation-delay:.1s; }
                    .text-effect span:nth-child(3) { animation-delay:.2s; }
                    .text-effect span:nth-child(4) { animation-delay:.3s; }
                    .text-effect span:nth-child(5) { animation-delay:.4s; }
                    .text-effect span:nth-child(6) { animation-delay:.5s; }
                    .text-effect span:nth-child(7) { animation-delay:.6s; }
                    .text-effect span:nth-child(8) { animation-delay:.7s; }
                    .text-effect span:nth-child(9) { animation-delay:.8s; }
                    .text-effect span:nth-child(10){ animation-delay:.9s; }
                    @keyframes animate{
                        0%{ transform: translateY(-80px) rotateY(0); }
                        40%{ transform: translateY(0px) rotateY(360deg); }
                        50%{ transform: translateY(-15px) rotateY(360deg); }
                        60%{ transform: translateY(0px) rotateY(360deg); }
                        70%{ transform: translateY(-15px) rotateY(360deg); }
                        100%{ transform: translateY(80px) rotateY(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