Видео Vimeo не воспроизводится после обновления страницы на мобильном телефоне - PullRequest
0 голосов
/ 12 января 2019

Я могу воспроизвести видео Vimeo впервые. когда я обновляю страницу, видео vimeo не воспроизводится.

ниже мой код:

HTML-код:

<iframe id="video_frame" frameborder="0" allowfullscreen="" src="https://player.vimeo.com/video/<?php echo get_field('about_mobile_vimeo_id'); ?>?api=1&amp;autoplay=1&amp;background=1&amp;badge=0&amp;byline=0&amp;fullscreen=1&amp;portrait=0&amp;title=0"  allow="autoplay; encrypted-media"></iframe>

Jquery:

jQuery(window).load(function(e){
        e.preventDefault();
       if (screen.width < 767) {
            var iframe = document.querySelector('#video_frame');
            var player = new Vimeo.Player(iframe);

            player.on('play', function(e) {
                e.preventDefault();
                console.log('played the video!');
            });

        }
    });
...