CSS text effect style : demo 227

Best jQuery

HTML

                        
Best jQuery

CSS

(Fonts required : Changa)
                        .text-effect{
                            color: #fff;
                            font-family: "Changa", sans-serif;
                            font-size: 100px;
                            font-weight: 600;
                            text-align: center;
                            text-transform: uppercase;
                            position: relative;
                            animation: animate 1.5s infinite alternate ease-in-out;
                        }
                        @keyframes animate{
                            0%{
                                text-shadow: 1px 1px 0  #ef5777, 1px 2px 0  #ef5777, 1px 3px 0  #ef5777, 1px 4px 0  #ef5777,
                                            1px 5px 0  #ef5777, 1px 6px 0  #ef5777, 1px 7px 0  #ef5777, 1px 8px 0  #ef5777,
                                            5px 13px 15px #000; 
                            }
                            100%{ 
                                transform: scale(1.1);
                                text-shadow: 1px -1px 0  #ef5777, 1px -2px 0  #ef5777, 1px -3px 0  #ef5777,
                                            1px -4px 0  #ef5777, 1px -5px 0  #ef5777, 1px -6px 0  #ef5777, 1px -7px 0  #ef5777,
                                            1px -8px 0  #ef5777, 5px -13px 15px #000, 5px -13px 25px  #ef5777;
                            }     
                        }
                        @media only screen and (max-width: 767px){
                            .text-effect{ font-size: 65px; }
                        }
                        @media only screen and (max-width: 576px){
                            .text-effect{ font-size: 45px; }
                        }
                    
License Terms