CSS text effect style : demo 113

Best jQuery

HTML

                        
Best jQuery

CSS

(Fonts required : Quicksand)
                        .text-effect{
                            color: #0069e9;
                            font-family: 'Quicksand', sans-serif;
                            font-size: 100px;
                            font-weight: 700;
                            text-align: center;
                        }
                        .text-effect span{
                            display: inline-block;
                            animation: animate 1s infinite linear;
                        }
                        .text-effect span:nth-child(1){ animation-delay: 0s; }
                        .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%,70%,100%{ transform: translateY(0); }
                            35% {
                                color: #3f00df;
                                transform: translateY(-60px);
                            }
                            85% {
                                color: #0069e9;
                                transform: translateY(-20px);
                            }
                        }
                        @media only screen and (max-width: 990px){
                            .text-effect{ font-size: 90px; }
                        }
                        @media only screen and (max-width: 767px){
                            .text-effect{ font-size: 70px; }
                        }
                        @media only screen and (max-width: 576px){
                            .text-effect{ font-size: 50px; }
                        }
                        @media only screen and (max-width: 479px){
                            .text-effect{
                                font-size: 40px;
                                line-height: 50px;
                            }
                        }
                    
License Terms