CSS text effect style : demo 241

Best jQuery

HTML

                        
Best jQuery

CSS

(Fonts required : Poetsen One)
                        .demo{ background: #6f1b1b;  }
                        .text-effect{
                            color: #fff;
                            font-family: "Poetsen One", sans-serif;
                            font-size: 100px;
                            font-weight: 400;
                            letter-spacing: 2px;
                            text-align: center;
                            text-transform: uppercase;
                            animation: rotateIn 2s linear alternate infinite;
                        }
                        @keyframes rotateIn {
                            0% {
                                transform: rotate(-200deg);
                                opacity: 0;
                            }
                            100% {
                                transform: rotate(0deg);
                                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; }
                        }
                        @media only screen and (max-width: 576px){
                            .text-effect{ font-size: 35px; }
                        }
                    
License Terms