new
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
<link rel="stylesheet" href="<%- theme.jsDelivr.url %><%- url_for(theme.libs.css.dplayer) %>">
|
||||
<div class="video-player">
|
||||
<% if (theme.video.showTitle) { %>
|
||||
<div class="title center-align">
|
||||
<i class="fas fa-video-camera"></i> <%= theme.video.title %>
|
||||
</div>
|
||||
<% } %>
|
||||
<div class="row">
|
||||
<div class="col l8 offset-l2 m10 offset-m1 s12">
|
||||
<div id="dplayer" class="dplayer-video"
|
||||
<% if (theme.video.height) { %> style="height: <%- theme.video.height %>px;"<% } %>></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src="<%- theme.jsDelivr.url %><%- url_for(theme.libs.js.dplayer) %>"></script>
|
||||
<script>
|
||||
$(function () {
|
||||
new DPlayer({
|
||||
container: document.getElementById('dplayer'),
|
||||
autoplay: '<%- theme.video.autoplay %>' === 'true',
|
||||
theme: '<%- theme.video.theme %>',
|
||||
loop: '<%- theme.video.loop %>' === 'true',
|
||||
lang: '<%- config.language %>' === 'zh-CN' ? 'zh-cn' : 'en',
|
||||
preload: '<%- theme.video.preload %>',
|
||||
volume: Number('<%- theme.video.volume %>'),
|
||||
video: {
|
||||
url: '<% if (theme.video.url) { %><%- url_for(theme.video.url) %><% } %>',
|
||||
pic: '<% if (theme.video.pic) { %><%- url_for(theme.video.pic) %><% } %>',
|
||||
thumbnails: '<% if (theme.video.thumbnails) { %><%- url_for(theme.video.thumbnails) %><% } %>'
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>
|
||||
Reference in New Issue
Block a user