CSS text effect style : demo 244

Best jQuery

HTML

                        
Best jQuery

CSS

(Fonts required : Sansita)
                        .text-effect{
                            color:  #ff3f3f;
                            font-family: "Sansita", sans-serif;
                            font-size: 100px;
                            font-weight: 400;
                            text-align: center;
                            text-transform: uppercase;
                            animation: zoomInUp 2s linear alternate infinite; 
                        }
                        @keyframes zoomInUp {
                            0% {
                                opacity: 0;
                                transform: scale3d(.1, .1, .1) translate3d(0, 100%, 0);
                            }
                            60% {
                                opacity: 1;
                                transform: scale3d(.475, .475, .475) translate3d(0, -10%, 0);
                            }
                            100% {
                                transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
                            }
                        }
                        @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: 35px; }
                        }
                    
License Terms