CSS text effect style : demo 239

Best jQuery

HTML

                        
Best jQuery

CSS

(Fonts required : Bakbak One)
                        .demo{ background: #ff5a08; }
                        .text-effect{
                            color: #fff;
                            font-family: "Bakbak One", sans-serif;
                            font-size: 100px;
                            font-weight: 400;
                            letter-spacing: 2px;
                            text-align: center;
                            text-transform: uppercase;
                            animation: animate 2s linear alternate infinite;
                        }
                        @keyframes animate{
                            0%{
                                transform: scale(0.1) rotate(30deg);
                                opacity: 0;
                            }
                            50% {
                                transform: rotate(-10deg);
                            }
                            70% {
                                transform: rotate(3deg);
                            }
                            100% {
                                transform: scale(1) rotate(0);
                                opacity: 1;
                            }
                        }
                        @media only screen and (max-width: 990px){
                            .text-effect{ font-size: 70px; }
                        }
                        @media only screen and (max-width: 767px){
                            .text-effect{ 
                                font-size: 60px; 
                                animation: focus_1 2s linear alternate infinite;
                            }
                        }
                        @media only screen and (max-width: 576px){
                            .text-effect{ font-size: 35px; }
                        }
                    
License Terms