Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!-- Swiper CDNs -->
- <link rel="stylesheet" href="https://unpkg.com/swiper@8/swiper-bundle.min.css"/>
- <script src="https://unpkg.com/swiper@8/swiper-bundle.min.js"></script>
- <script>
- jQuery(function($){
- // Envolver la seccion swiper-slide en un div swiper-wrapper
- $( ".swiper-slide" ).wrapAll( "<div class='swiper-wrapper' />");
- // Envolver swiper-wrapper en un div swiper-container
- $( ".swiper-wrapper" ).wrap( "<div class='swiper ov-swiper-slider-vertical'></div>" );
- // Insertar la paginacion swiper js
- $( "<div class='swiper-pagination'></div>" ).insertAfter( ".swiper-wrapper" );
- });
- </script>
- <script>
- jQuery(document).ready(function( $ ) {
- var ovSliderVertical = new Swiper(".ov-swiper-slider-vertical", {
- direction: 'vertical',
- slidesPerView: 1,
- speed: 1000,
- parallax: true,
- effect: "coverflow",
- touchReleaseOnEdges: true,
- mousewheel: {
- releaseOnEdges: true,
- sensitivity: 1,
- },
- pagination: {
- el: '.swiper-pagination',
- clickable: true,
- },
- });
- });
- </script>
- <script>
- // Agregar atributos de swiper parallax
- jQuery(function($){
- $( ".parallax-img" ).attr({
- "data-swiper-parallax":"-25%",
- "data-swiper-parallax-opacity":"0.5",
- "data-swiper-parallax-scale":"0.15"
- });
- $( ".parallax-btn" ).attr({
- "data-swiper-parallax":"-100",
- });
- });
- </script>
Add Comment
Please, Sign In to add comment