Advertisement
oscarviedma

Agregar estructura HTML de swiper

Feb 4th, 2021
453
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. <script>
  2. jQuery(function($){
  3.  
  4. // Agregar la clase swiper-wrapper
  5. $("#main-content .et_builder_inner_content").addClass("swiper-wrapper");
  6.  
  7. // Envolver la seccion swiper-wrapper en un div swiper-container
  8. $( ".swiper-wrapper" ).wrap( "<div class='swiper-container ov-desplazamiento-horizontal'></div>" );
  9.  
  10. // Insertar la paginacion swiper js
  11. $( "<div class='swiper-scrollbar'></div>" ).insertAfter( ".swiper-wrapper" );
  12.  
  13. });
  14. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement