CSS text effect style : demo 207

Best jQuery

HTML

                        
Best jQuery

CSS

(Fonts required : Chivo)
                    .text-effect{
                        color: #603813;
                        font-family: 'Chivo', sans-serif;
                        font-size: 100px;
                        font-weight: 700;
                        text-align: center;
                    }
                    .text-effect span{ display: inline-block; }
                    .text-effect span:first-child,
                    .text-effect span:nth-child(3),
                    .text-effect span:nth-child(5),
                    .text-effect span:nth-child(7),
                    .text-effect span:nth-child(9){ animation: letters-left 1.5s infinite linear; }
                    .text-effect span:nth-child(2),
                    .text-effect span:nth-child(4),
                    .text-effect span:nth-child(6),
                    .text-effect span:nth-child(8), 
                    .text-effect span:nth-child(10){ animation: letters-right 1.5s infinite linear; }
                    @keyframes letters-left{
                        0%, 100%{ transform: rotate(0deg); }
                        25%{ transform: rotate(10deg); }
                        75%{ transform: rotate(-10deg); }
                    }
                    @keyframes letters-right{
                        0%, 100%{ transform: rotate(0deg); }
                        25%{ transform: rotate(-10deg); }
                        75%{ transform: rotate(10deg); }
                    }
                    @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: 40px; }
                    }
                    
License Terms