Advertisement
oscarviedma

Script para reemplazar el color y la imagen de fondo (simply chocolate))

Apr 24th, 2021
444
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1. <script>
  2. (function($){
  3. $(window).on("scroll touchmove", function() {
  4.  
  5. if ($(document).scrollTop() >= $("#fila-1").position().top) {
  6. $('#fila-fondo-color').css( "background", "linear-gradient(90deg, rgba(105,45,0,1) 0%, rgba(168,98,28,1) 100%)" );
  7. $('#seccion-fondo').addClass('img-fila-1');
  8. } else {
  9. $('#seccion-fondo').removeClass('img-fila-1');
  10. };
  11.  
  12. if ($(document).scrollTop() > $("#fila-2").position().top) {
  13. $('#fila-fondo-color').css( "background", "linear-gradient(90deg, rgba(17,43,141,1) 0%, rgba(0,83,236,1) 100%)" );
  14. $('#seccion-fondo').addClass('img-fila-2');
  15. } else {
  16. $('#seccion-fondo').removeClass('img-fila-2');
  17. };
  18.  
  19. if ($(document).scrollTop() > $("#fila-3").position().top) {
  20. $('#fila-fondo-color').css( "background", "linear-gradient(90deg, rgba(65,210,150,1) 0%, rgba(144,255,224,1) 100%)" );
  21. $('#seccion-fondo').addClass('img-fila-3');
  22. } else {
  23. $('#seccion-fondo').removeClass('img-fila-3');
  24. };
  25.  
  26. if ($(document).scrollTop() > $("#fila-4").position().top) {
  27. $('#fila-fondo-color').css( "background", "linear-gradient(90deg, rgba(237,175,66,1) 0%, rgba(255,235,145,1) 100%)" );
  28. $('#seccion-fondo').addClass('img-fila-4');
  29. } else {
  30. $('#seccion-fondo').removeClass('img-fila-4');
  31. };
  32.  
  33. if ($(document).scrollTop() > $("#fila-5").position().top) {
  34. $('#fila-fondo-color').css( "background", "linear-gradient(90deg, rgba(168,21,50,1) 0%, rgba(231,68,92,1) 100%)" );
  35. $('#seccion-fondo').addClass('img-fila-5');
  36. } else {
  37. $('#seccion-fondo').removeClass('img-fila-5');
  38. };
  39.  
  40. });
  41.  
  42. })(jQuery)
  43. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement