CSS text effect style : demo 177

Best jQuery

HTML

                        
Best jQuery

CSS

(Fonts required : Rubik Moonrocks)
                    .text-effect{
                        color: #DB0055;
                        font-family: 'Rubik Moonrocks', cursive;
                        font-size: 100px;
                        text-align: center;
                        animation: animate 2s 750ms linear infinite;
                    }
                    @keyframes animate{
                        100%{
                            color: #794A94;
                            transform: scaleX(0.8) scaleY(1.2);
                        }
                    }
                    @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