CSS text effect style : demo 213

Best jQuery

HTML

                        
Best jQuery

CSS

(Fonts required : Aleo)
                        .demo{ background: #f75700; }

                        .text-effect{
                            color: #fff;
                            font-family: 'Aleo', serif;
                            font-size: 100px;
                            font-weight: 700;
                            text-align: center;
                            position: relative;
                        }

                        .text-effect span{
                            margin: 0 1px;
                            display: inline-block;
                            animation: animate 2s ease-in-out infinite;
                        }

                        .text-effect span:nth-child(2n){ animation-delay: .1s; }
                        .text-effect span:nth-child(2n + 1){ animation-delay: .2s; }
                            
                        @keyframes animate{
                            0%, 100% { transform: translateY(0px); }
                                50% { transform: translateY(100px); }
                        }

                        @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