Help, please, added a videophone script, it is displayed only in IE and Mozilla, Opere and Chrome just cost a video, although there are video formats .mp4 .ogg .webm

<script> $(document).ready(function() { var videobackground = new $.backgroundVideo($('body'), { "align": "centerXY", "width": 1280, "height": 720, "path": "video/", "filename": "bg", "types": ["mp4","ogg","webm"], "preload": true, "autoplay": true, "loop": true }); $("a[rel='m_PageScroll2id']").mPageScroll2id(); }); 

    1 answer 1

    Try adding "muted": true to the script parameters. The Blink engine, on which both chrome and opera are based, has such a feature, they will not automatically play video with sound (regardless of whether it really is or not)

     $(document).ready(function() { var videobackground = new $.backgroundVideo($('body'), { "align": "centerXY", "width": 1280, "height": 720, "path": "video/", "filename": "bg", "types": ["mp4","ogg","webm"], "preload": true, "autoplay": true, "loop": true, "muted": true }); $("a[rel='m_PageScroll2id']").mPageScroll2id(); }); 

    • did not help ((((( - Pavel Rumyantsev