mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-11 15:19:09 -04:00
18 lines
653 B
PHP
18 lines
653 B
PHP
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
|
<div <?= html::attributes($div_attrs) ?>>
|
|
<video <?= html::attributes($video_attrs) ?>>
|
|
<source <?= html::attributes($source_attrs) ?>>
|
|
</video>
|
|
</div>
|
|
<script type="text/javascript">
|
|
$("#<?= $div_attrs["id"] ?> video").mediaelementplayer(
|
|
$.extend(true, {
|
|
defaultVideoWidth: <?= $width ?>,
|
|
defaultVideoHeight: <?= $height ?>,
|
|
startVolume: 1.0,
|
|
features: ["playpause", "progress", "current", "duration", "volume", "fullscreen"],
|
|
pluginPath: "<?= url::abs_file("lib/mediaelementjs/") ?>"
|
|
}, <?= json_encode($player_options) ?>)
|
|
);
|
|
</script>
|