CSS text effect style : demo 175

Best jQuery

HTML

                        
Best jQuery

CSS

(Fonts required : Bubblegum Sans)
                    .text-effect{
                        color: transparent;
                        background: -webkit-linear-gradient(left, rgba(255,0,0,1) 0%,rgba(255,255,0,1) 19%,rgba(0,255,0,1) 38%,rgba(0,255,255,1) 51%,rgba(0,0,255,1) 67%,rgba(255,0,255,1) 83%,rgba(255,0,0,1) 99%);
                        font-family: 'Bubblegum Sans', cursive;
                        font-size: 100px;
                        font-weight: 700;
                        text-align: center;
                        -webkit-text-stroke: 2px rgba(255,255,255,1);
                        -moz-text-stroke: 2px rgba(255,255,255,1);
                        text-stroke: 2px rgba(255,255,255,1);
                        -webkit-background-clip: text;
                        -moz-background-clip: text;
                        background-clip: text;
                        animation: animate 3s infinite linear alternate;
                    }
                    @keyframes animate{
                        100%{
                            background: -webkit-linear-gradient(left, rgba(255,0,0,1) 0%,rgba(255,255,0,1) 19%,rgba(0,255,0,1) 38%,rgba(0,255,255,1) 51%,rgba(0,0,255,1) 67%,rgba(255,0,255,1) 83%,rgba(255,0,0,1) 99%);
                            -webkit-background-clip: text;
                            -moz-background-clip: text;
                            background-clip: text;
                            background-position: -500px;
                        }
                    }
                    @media only screen and (max-width: 990px){
                        .text-effect{ font-size: 80px; }
                    }
                    @media only screen and (max-width: 767px){
                        .text-effect{ font-size: 60px; }
                    }
                    @media only screen and (max-width: 576px){
                        .text-effect{
                            font-size: 45px;
                            -webkit-text-stroke: 1px rgba(255,255,255,1);
                            -moz-text-stroke: 1px rgba(255,255,255,1);
                            text-stroke: 1px rgba(255,255,255,1);
                        }
                    }
                    
License Terms