Advertisement
chernov2000

Простой слайдер на JS

Nov 11th, 2022
964
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.30 KB | None | 0 0
  1. <div>
  2. <picture class="rio-slider__top">
  3.     <source  media="(max-width: 768px)" srcset="/upload/15_mobile_banner_min.png">
  4.     <source srcset="/upload/15_desc_min.png">
  5.     <img src="/upload/15_desc_min.png" alt="Акция -15% на весь трикотаж">
  6. </picture>
  7.  
  8. <picture class="rio-slider__top" style="display:none">
  9.     <source  media="(max-width: 768px)" srcset="/upload/baby_mobi.png">
  10.     <source srcset="/upload/baby_desk.png">
  11.     <img src="/upload/baby_desk.png" alt="-20% на товары для новорожденных">
  12. </picture>
  13.  
  14. <picture class="rio-slider__top" style="display:none">
  15.     <source  media="(max-width: 768px)" srcset="/upload/noyabr_ok_sjat_mobi_podush.png">
  16.     <source srcset="/upload/noybr_min_sjat_podush.png">
  17.     <img src="/upload/noybr_min_sjat_podush.png" alt="Подушка в подарок">
  18. </picture>
  19.  
  20.  
  21. </div>
  22.  
  23. <script>
  24. document.addEventListener('DOMContentLoaded', e=>{
  25.     function rio_slider__top(){
  26.       let el = $('.rio-slider__top:visible');
  27.       el.fadeOut('slow', function(){
  28.            let next = $(this).next();
  29.             if(next.length){
  30.                 next.show();
  31.              } else {
  32.                $('.rio-slider__top:first').show();
  33.             }
  34.         });
  35.     }
  36.     setInterval(rio_slider__top, 5000);
  37.  
  38. });
  39. </script>
Tags: РИО
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement