20 lines
737 B
PHP
20 lines
737 B
PHP
<?php $__env->startPush('scripts'); ?>
|
|
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/mediaelement/4.2.7/mediaelement-and-player.min.js"></script>
|
|
<script type="text/javascript">
|
|
var pluginPath = 'https://cdnjs.cloudflare.com/ajax/libs/mediaelement/4.2.7/';
|
|
$("audio").mediaelementplayer({
|
|
pluginPath: pluginPath,
|
|
stretching: 'responsive',
|
|
});
|
|
$("video").mediaelementplayer({
|
|
pluginPath: pluginPath,
|
|
videoWidth: '100%',
|
|
videoHeight: '100%',
|
|
enableAutosize: true,
|
|
});
|
|
</script>
|
|
<?php $__env->stopPush(); ?>
|
|
<?php $__env->startPush('styles'); ?>
|
|
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/mediaelement/4.2.7/mediaelementplayer.css" />
|
|
<?php $__env->stopPush(); ?>
|