CSS text effect style : demo 208

Best jQuery

HTML

                        
Best jQuery

CSS

(Fonts required : Rowdies)
                    .text-effect{
                        color:#fff;
                        font-family: 'Rowdies', cursive;
                        font-size: 100px;
                        text-align: center;
                        animation: animate 1.25s infinite linear;
                    }
                    @keyframes animate{
                        0%, 100%{ transform: scaleY(0); }
                        50%{ transform: scaleY(1.5); }
                    }
                    @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