oscarviedma

Parallax.js para divi

Oct 1st, 2020
466
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. <script src="https://cdnjs.cloudflare.com/ajax/libs/parallax/3.1.0/parallax.min.js"></script>
  2.  
  3. <script>
  4. jQuery(function($){
  5.  
  6. $( ".estrellas" ).attr( "data-depth", "0.1" );
  7. $( ".luna" ).attr( "data-depth", "0.3" );
  8. $( ".nave" ).attr( "data-depth", "0.4" );
  9. $( ".astronauta" ).attr( "data-depth", "0.8" );
  10. $( ".marte" ).attr( "data-depth", "0.3" );
  11. $( ".satelite" ).attr( "data-depth", "0.5" );
  12. $( ".meteorito-1" ).attr( "data-depth", "0.6" );
  13. $( ".tierra" ).attr( "data-depth", "0.4" );
  14. $( ".meteorito-2" ).attr( "data-depth", "0.7" );
  15.  
  16. var parallaxMouseScroll = $('#hero').get(0);
  17. var parallaxInstance = new Parallax(parallaxMouseScroll);
  18.  
  19. });
  20. </script>
Add Comment
Please, Sign In to add comment