mirror of
https://github.com/spacedeck/spacedeck-open.git
synced 2025-12-15 17:37:30 +01:00
Merge branch 'feature/video-native-timeline' of https://github.com/arillo/spacedeck-open into arillo-feature/video-native-timeline
This commit is contained in:
@@ -52,9 +52,18 @@ function setup_directives() {
|
||||
}
|
||||
|
||||
var play_func = function() {
|
||||
video.play();
|
||||
player_state = "playing";
|
||||
update_view();
|
||||
var playPromise = video.play();
|
||||
if (playPromise !== undefined) {
|
||||
playPromise.then(_ => {
|
||||
// Automatic playback started!
|
||||
player_state = "playing";
|
||||
update_view();
|
||||
})
|
||||
.catch(error => {
|
||||
// Auto-play was prevented
|
||||
// Show paused UI.
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
var pause_func = function() {
|
||||
|
||||
@@ -15185,6 +15185,8 @@ button.close {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-size: cover; }
|
||||
.artifact .video.playing video {
|
||||
z-index: 1; }
|
||||
.artifact .video .title {
|
||||
position: absolute;
|
||||
bottom: 0px;
|
||||
@@ -15198,13 +15200,15 @@ button.close {
|
||||
font-size: 10px; }
|
||||
.artifact .video video {
|
||||
width: 100%;
|
||||
height: 100%; }
|
||||
height: 100%;
|
||||
position: absolute; }
|
||||
.artifact .video .tl-controls {
|
||||
position: absolute;
|
||||
bottom: 10px;
|
||||
top: 10px;
|
||||
left: 10px;
|
||||
right: 10px;
|
||||
text-align: center; }
|
||||
text-align: center;
|
||||
z-index: 2; }
|
||||
.artifact .video .tl-controls .btn {
|
||||
margin-top: 20px; }
|
||||
.artifact .audio {
|
||||
|
||||
Reference in New Issue
Block a user