Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script>
- (function($){
- $(window).on("scroll touchmove", function() {
- if ($(document).scrollTop() >= $("#fila-1").position().top) {
- $('#fila-fondo-color').css( "background", "linear-gradient(90deg, rgba(105,45,0,1) 0%, rgba(168,98,28,1) 100%)" );
- $('#seccion-fondo').addClass('img-fila-1');
- } else {
- $('#seccion-fondo').removeClass('img-fila-1');
- };
- if ($(document).scrollTop() > $("#fila-2").position().top) {
- $('#fila-fondo-color').css( "background", "linear-gradient(90deg, rgba(17,43,141,1) 0%, rgba(0,83,236,1) 100%)" );
- $('#seccion-fondo').addClass('img-fila-2');
- } else {
- $('#seccion-fondo').removeClass('img-fila-2');
- };
- if ($(document).scrollTop() > $("#fila-3").position().top) {
- $('#fila-fondo-color').css( "background", "linear-gradient(90deg, rgba(65,210,150,1) 0%, rgba(144,255,224,1) 100%)" );
- $('#seccion-fondo').addClass('img-fila-3');
- } else {
- $('#seccion-fondo').removeClass('img-fila-3');
- };
- if ($(document).scrollTop() > $("#fila-4").position().top) {
- $('#fila-fondo-color').css( "background", "linear-gradient(90deg, rgba(237,175,66,1) 0%, rgba(255,235,145,1) 100%)" );
- $('#seccion-fondo').addClass('img-fila-4');
- } else {
- $('#seccion-fondo').removeClass('img-fila-4');
- };
- if ($(document).scrollTop() > $("#fila-5").position().top) {
- $('#fila-fondo-color').css( "background", "linear-gradient(90deg, rgba(168,21,50,1) 0%, rgba(231,68,92,1) 100%)" );
- $('#seccion-fondo').addClass('img-fila-5');
- } else {
- $('#seccion-fondo').removeClass('img-fila-5');
- };
- });
- })(jQuery)
- </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement