Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

Cambiar el color de texto al hacer scroll css

$(document).ready(function(){       
        var scroll_pos = 0;
        $(document).scroll(function() { 
            scroll_pos = $(this).scrollTop();
            if(scroll_pos > 210) {
                $('.hvr-reveal').css('color', '#000');
            } else {
                $('.hvr-reveal').css('color', '#fff');
            }
        });
    });
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #Cambiar #el #color #de #texto #al #hacer #scroll #css
ADD COMMENT
Topic
Name
3+6 =