Okay
  Public Ticket #2569583
video slide in mobile
Closed

Comments

  • Mohamad Ali Fejla started the conversation

    I am trying to add a video as a slider that works well on the computer browser , but the video does not work on the mobile

  •  2,007
    Support replied

    Hi,

    It is not recommended, as a general practice, having videos autoplaying on mobile (and taking in consideration different data mobile plans and different networks streaming speeds). Also, the problem with ios devices is they interpret the HTML 5 videos as videos without player so they will embed it it in a popup player. You should provide a poster image (hero image) for mobile in video portfolio options.

    However, to enable video on mobile try the following:

    1. add

    @media only screen and (max-width: 1024px){      

           .hero-video-wrapper {         

                 display: block;         

                 visibility: visible;      

           }

    }

    in customizer -> additional CSS

    2. open/js.scripts.js and remove the following lines:

    var viewportWidth = $(window).width(); 

    if (viewportWidth < 1024) {      

         $('.hero-video-wrapper').remove();   

    }

    hard refresh the page (Ctrl+F5) when you are done.

    3.  go to showcase-page.php and change the following line

    <video loop muted class="bgvid">

    to

    <video loop muted playsinline class="bgvid">

    same thing for /sections/hero_section_container.php 

  • Mohamad Ali Fejla replied

    ok, thank you