JSFiddle - React, Tailwind, and code Playground
HTML
<script src="https://jp.igniteui.com/js/modernizr.min.js"></script>
<script src="https://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="https://code.jquery.com/ui/1.10.3/jquery-ui.min.js"></script>
<script src="https://cdn-na.infragistics.com/igniteui/latest/js/infragistics.core.js"></script>
<script src="https://cdn-na.infragistics.com/igniteui/latest/js/infragistics.lob.js"></script>
<link href="https://cdn-na.infragistics.com/igniteui/latest/css/themes/infragistics/infragistics.theme.css" rel="stylesheet"></link>
<link href="https://cdn-na.infragistics.com/igniteui/latest/css/structure/infragistics.css" rel="stylesheet"></link>
<script src="https://cdn-na.infragistics.com/igniteui/latest/js/i18n/infragistics-ja.js"></script>
<div id="player1"></div>
JavaScript
$(function () {
$("#player1").igVideoPlayer({
sources: [
'https://dl.infragistics.com/pg/2011-1/web/shared/videoplayer/videos/Infragistics_Presentation_lowRes_1.h264.mp4',
'https://dl.infragistics.com/pg/2011-1/web/shared/videoplayer/videos/Infragistics_Presentation_lowRes_1.webmvp8.webm',
'https://dl.infragistics.com/pg/2011-1/web/shared/videoplayer/videos/Infragistics_Presentation_lowRes_1.theora.ogv'
],
width: "100%",
posterUrl: 'https://jp.igniteui.com/images/samples/video-player/ig-pres.png',
fullscreen: false,
browserControls: false,
autohide: false,
autoplay: false,
autohideDelay: 2000,
title: 'Infragistics プレゼンテーション',
bookmarks: [{
title: 'デザイン',
description: 'Infragistics デザイン プレゼンテーション',
time: 14
},
{
title: '開発',
description: 'Infragistics 開発プレゼンテーション',
time: 46
},
{
title: '体験',
description: 'Infragistics エクスペリエンス プレゼンテーション',
time: 74
},
{
title: '最終',
description: 'インフラジスティックスのロゴ',
time: 100
}]
});
});