Advertisement
willliamapocalypse

Banner Diferenciado

Jul 6th, 2020
1,215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.49 KB | None | 0 0
  1.  
  2. <script type="text/javascript" charset="utf-8">
  3. /* agenciaekos.com.br */
  4.       $('.banner.cheio .slides>li').each(function(){
  5.     console.log($('>a>img', this).attr('alt'));
  6.     if($('>a>img', this).attr('alt').indexOf("mobile")!=-1) {
  7.         $(this).addClass('banner-mobile');
  8.         if(screen.width > 540){
  9.            $('.banner-mobile').remove();
  10.         }
  11.     }else{
  12.         $(this).addClass('banner-desktop');
  13.         if(screen.width <= 540){
  14.            $('.banner-desktop').remove();
  15.         }
  16.     }
  17. });
  18.    </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement