Показать сообщение отдельно
  #2 (permalink)  
Старый 02.11.2018, 15:38
Профессор
Отправить личное сообщение для Dilettante_Pro Посмотреть профиль Найти все сообщения от Dilettante_Pro
 
Регистрация: 27.11.2015
Сообщений: 2,899

Из документации по Blueimp Gallery:

Multiple video sources
To provide multiple video formats, the sources property of a list object can be set to an array of objects with href and type properties for each video source. The first video format in the list that the browser can play will be displayed:

blueimp.Gallery([
    {
        title: 'Fruits',
        type: 'video/*',
        poster: 'https://example.org/images/fruits.jpg',
        sources: [
            {
                href: 'https://example.org/videos/fruits.mp4',
                type: 'video/mp4'
            },
            {
                href: 'https://example.org/videos/fruits.ogg',
                type: 'video/ogg'
            }
        ]
    }
]);
Ответить с цитированием