diff options
Diffstat (limited to 'client/src')
-rw-r--r-- | client/src/assets/player/images/big-play-button.svg | 11 | ||||
-rw-r--r-- | client/src/assets/player/peertube-videojs-plugin.ts | 7 | ||||
-rw-r--r-- | client/src/sass/video-js-custom.scss | 61 |
3 files changed, 49 insertions, 30 deletions
diff --git a/client/src/assets/player/images/big-play-button.svg b/client/src/assets/player/images/big-play-button.svg new file mode 100644 index 000000000..f2e65dc38 --- /dev/null +++ b/client/src/assets/player/images/big-play-button.svg | |||
@@ -0,0 +1,11 @@ | |||
1 | <?xml version="1.0" encoding="iso-8859-1"?> | ||
2 | <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" | ||
3 | viewBox="0 0 460.114 460.114" style="enable-background:new 0 0 460.114 460.114;" xml:space="preserve"> | ||
4 | <g> | ||
5 | <g> | ||
6 | <path fill="#fff" d="M393.538,203.629L102.557,5.543c-9.793-6.666-22.468-7.372-32.94-1.832c-10.472,5.538-17.022,16.413-17.022,28.26v396.173 | ||
7 | c0,11.846,6.55,22.721,17.022,28.26c10.471,5.539,23.147,4.834,32.94-1.832l290.981-198.087 | ||
8 | c8.746-5.954,13.98-15.848,13.98-26.428C407.519,219.477,402.285,209.582,393.538,203.629z"/> | ||
9 | </g> | ||
10 | </g> | ||
11 | </svg> | ||
diff --git a/client/src/assets/player/peertube-videojs-plugin.ts b/client/src/assets/player/peertube-videojs-plugin.ts index ddb73d074..83df24af6 100644 --- a/client/src/assets/player/peertube-videojs-plugin.ts +++ b/client/src/assets/player/peertube-videojs-plugin.ts | |||
@@ -322,11 +322,10 @@ class PeerTubePlugin extends Plugin { | |||
322 | // Proxy first play | 322 | // Proxy first play |
323 | const oldPlay = this.player.play.bind(this.player) | 323 | const oldPlay = this.player.play.bind(this.player) |
324 | this.player.play = () => { | 324 | this.player.play = () => { |
325 | this.updateVideoFile(undefined, 0, () => { | 325 | this.player.addClass('vjs-has-big-play-button-clicked') |
326 | this.seek(this.startTime) | ||
327 | oldPlay() | ||
328 | }) | ||
329 | this.player.play = oldPlay | 326 | this.player.play = oldPlay |
327 | |||
328 | this.updateVideoFile(undefined, 0, () => this.seek(this.startTime)) | ||
330 | } | 329 | } |
331 | } | 330 | } |
332 | } | 331 | } |
diff --git a/client/src/sass/video-js-custom.scss b/client/src/sass/video-js-custom.scss index 768b7895f..cae7ab431 100644 --- a/client/src/sass/video-js-custom.scss +++ b/client/src/sass/video-js-custom.scss | |||
@@ -1,6 +1,13 @@ | |||
1 | @import '_variables'; | 1 | @import '_variables'; |
2 | @import '_mixins'; | 2 | @import '_mixins'; |
3 | 3 | ||
4 | @mixin big-play-button-triangle-size($triangle-size) { | ||
5 | width: $triangle-size; | ||
6 | height: $triangle-size; | ||
7 | top: calc(50% - #{$triangle-size / 2}); | ||
8 | left: calc(53% - #{($triangle-size / 2)}); | ||
9 | } | ||
10 | |||
4 | $primary-foreground-color: #fff; | 11 | $primary-foreground-color: #fff; |
5 | $primary-foreground-opacity: 0.9; | 12 | $primary-foreground-opacity: 0.9; |
6 | $primary-foreground-opacity-hover: 1; | 13 | $primary-foreground-opacity-hover: 1; |
@@ -59,7 +66,7 @@ $setting-transition-easing: ease-out; | |||
59 | $big-play-width: 1.2em; | 66 | $big-play-width: 1.2em; |
60 | $big-play-height: 1.2em; | 67 | $big-play-height: 1.2em; |
61 | 68 | ||
62 | border: 0; | 69 | border: 6px solid #fff; |
63 | border-radius: 100%; | 70 | border-radius: 100%; |
64 | 71 | ||
65 | left: 50%; | 72 | left: 50%; |
@@ -69,7 +76,7 @@ $setting-transition-easing: ease-out; | |||
69 | line-height: $big-play-height; | 76 | line-height: $big-play-height; |
70 | margin-left: -($big-play-width / 2); | 77 | margin-left: -($big-play-width / 2); |
71 | margin-top: -($big-play-height / 2); | 78 | margin-top: -($big-play-height / 2); |
72 | transition: opacity 0.5s; | 79 | transition: 0.4s opacity; |
73 | 80 | ||
74 | &::-moz-focus-inner { | 81 | &::-moz-focus-inner { |
75 | border: 0; | 82 | border: 0; |
@@ -77,41 +84,33 @@ $setting-transition-easing: ease-out; | |||
77 | } | 84 | } |
78 | 85 | ||
79 | .vjs-icon-placeholder::before { | 86 | .vjs-icon-placeholder::before { |
80 | transition: font-size 0.2s, opacity 0.2s; | 87 | @include big-play-button-triangle-size(45px); |
88 | |||
89 | content: ''; | ||
90 | background-image: url('../assets/player/images/big-play-button.svg'); | ||
81 | } | 91 | } |
82 | 92 | ||
83 | &:hover { | 93 | &:hover { |
84 | opacity: 0.8; | 94 | opacity: 0.8; |
85 | |||
86 | .vjs-icon-placeholder::before { | ||
87 | font-size: 110%; | ||
88 | } | ||
89 | } | 95 | } |
90 | } | 96 | } |
91 | 97 | ||
92 | &.vjs-has-started .vjs-big-play-button { | 98 | // Small effect when we click on the play button |
93 | display: block; | 99 | &.vjs-has-big-play-button-clicked { |
94 | visibility: hidden; | ||
95 | |||
96 | &, &::before { | ||
97 | opacity: 0; | ||
98 | transition: visibility 0.1s, opacity 0.1s; | ||
99 | } | ||
100 | } | ||
101 | 100 | ||
102 | &.vjs-has-started video { | 101 | .vjs-big-play-button, .vjs-poster { |
103 | background-color: #000; | 102 | display: block; |
104 | animation: fade-black-on-play 0.5s linear; | 103 | visibility: hidden; |
105 | 104 | ||
106 | @keyframes fade-black-on-play { | 105 | &.vjs-big-play-button, &.vjs-big-play-button::before { |
107 | 0% { | ||
108 | opacity: 1; | ||
109 | } | ||
110 | 50% { | ||
111 | opacity: 0; | 106 | opacity: 0; |
107 | transition: visibility 0.2s, opacity 0.2s; | ||
112 | } | 108 | } |
113 | 100% { | 109 | |
114 | opacity: 1; | 110 | &.vjs-poster, &.vjs-poster::before { |
111 | opacity: 0; | ||
112 | transition: visibility 0.3s, opacity 0.3s; | ||
113 | transition-delay: 0.05s; | ||
115 | } | 114 | } |
116 | } | 115 | } |
117 | } | 116 | } |
@@ -446,6 +445,11 @@ $setting-transition-easing: ease-out; | |||
446 | 445 | ||
447 | .vjs-big-play-button { | 446 | .vjs-big-play-button { |
448 | font-size: 4.5em; | 447 | font-size: 4.5em; |
448 | border-width: 4.5px; | ||
449 | |||
450 | .vjs-icon-placeholder::before { | ||
451 | @include big-play-button-triangle-size(27px); | ||
452 | } | ||
449 | } | 453 | } |
450 | 454 | ||
451 | .vjs-playback-rate { | 455 | .vjs-playback-rate { |
@@ -468,6 +472,11 @@ $setting-transition-easing: ease-out; | |||
468 | 472 | ||
469 | .vjs-big-play-button { | 473 | .vjs-big-play-button { |
470 | font-size: 3em; | 474 | font-size: 3em; |
475 | border-width: 3px; | ||
476 | |||
477 | .vjs-icon-placeholder::before { | ||
478 | @include big-play-button-triangle-size(20px); | ||
479 | } | ||
471 | } | 480 | } |
472 | 481 | ||
473 | .vjs-volume-control { | 482 | .vjs-volume-control { |