CSS text effect style : demo 96

Best jQuery

HTML

                        
Best jQuery

CSS

(Fonts required : Fugaz One)
                        .text-effect{
                            color: #10ac84;
                            font-family: 'Fugaz One', cursive;
                            font-size: 100px;
                            text-align: center;
                        }
                        .text-effect span{
                            display: inline-block;
                            animation: animate 3s ease infinite;
                        }
                        .text-effect span:nth-child(2){ animation-delay: 0.1s; }
                        .text-effect span:nth-child(3){ animation-delay: 0.2s; }
                        .text-effect span:nth-child(4){ animation-delay: 0.3s; }
                        .text-effect span:nth-child(5){ animation-delay: 0.4s; }
                        .text-effect span:nth-child(6){ animation-delay: 0.5s; }
                        .text-effect span:nth-child(7){ animation-delay: 0.6s; }
                        .text-effect span:nth-child(8){ animation-delay: 0.7s; }
                        .text-effect span:nth-child(9){ animation-delay: 0.8s; }
                        .text-effect span:nth-child(10){ animation-delay: 0.9s; }
                        @keyframes animate{
                            0%, 100%{ transform: scaleY(1) scaleX(1); }
                            20%{ transform: scaleY(2) scaleX(.75); }
                            60%{ transform: scaleY(.5) scaleX(1.2); }
                        }
                        @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: 55px; }
                        }
                        @media only screen and (max-width: 479px){
                            .text-effect{ font-size: 40px; }
                        }
                    
License Terms