Merge branch 'master' of https://github.com/timhobbs/MediaBrowser
This commit is contained in:
commit
d02fcffade
2 changed files with 71 additions and 0 deletions
|
@ -134,6 +134,10 @@
|
||||||
margin-top: -115px;
|
margin-top: -115px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#videoPlayer.aspect43 {
|
||||||
|
margin-top: -163px;
|
||||||
|
}
|
||||||
|
|
||||||
#videoPlayer.fullscreenVideo,
|
#videoPlayer.fullscreenVideo,
|
||||||
.fullscreenVideo .itemVideo {
|
.fullscreenVideo .itemVideo {
|
||||||
position: fixed !important;
|
position: fixed !important;
|
||||||
|
@ -401,6 +405,16 @@ ss}
|
||||||
margin-left: -250px;
|
margin-left: -250px;
|
||||||
margin-top: -160px;
|
margin-top: -160px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.aspect43 .itemVideo:not(.fullscreenVideo) {
|
||||||
|
width: 440px;
|
||||||
|
margin-left: -220px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#videoPlayer.aspect43 {
|
||||||
|
margin-left: -230px;
|
||||||
|
margin-top: -208px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width: 800px) and (min-height: 450px) {
|
@media (min-width: 800px) and (min-height: 450px) {
|
||||||
|
@ -414,6 +428,16 @@ ss}
|
||||||
margin-left: -330px;
|
margin-left: -330px;
|
||||||
margin-top: -205px;
|
margin-top: -205px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.aspect43 .itemVideo:not(.fullscreenVideo) {
|
||||||
|
width: 560px;
|
||||||
|
margin-left: -280px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#videoPlayer.aspect43 {
|
||||||
|
margin-left: -290px;
|
||||||
|
margin-top: -253px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width: 960px) and (min-height: 540px) {
|
@media (min-width: 960px) and (min-height: 540px) {
|
||||||
|
@ -427,6 +451,16 @@ ss}
|
||||||
margin-left: -370px;
|
margin-left: -370px;
|
||||||
margin-top: -228px;
|
margin-top: -228px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.aspect43 .itemVideo:not(.fullscreenVideo) {
|
||||||
|
width: 640px;
|
||||||
|
margin-left: -320px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#videoPlayer.aspect43 {
|
||||||
|
margin-left: -330px;
|
||||||
|
margin-top: -283px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width: 1200px) and (min-height: 720px) {
|
@media (min-width: 1200px) and (min-height: 720px) {
|
||||||
|
@ -440,6 +474,16 @@ ss}
|
||||||
margin-left: -550px;
|
margin-left: -550px;
|
||||||
margin-top: -329px;
|
margin-top: -329px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.aspect43 .itemVideo:not(.fullscreenVideo) {
|
||||||
|
width: 900px;
|
||||||
|
margin-left: -450px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#videoPlayer.aspect43 {
|
||||||
|
margin-left: -460px;
|
||||||
|
margin-top: -380px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width: 1440px) and (min-height: 720px) {
|
@media (min-width: 1440px) and (min-height: 720px) {
|
||||||
|
@ -457,6 +501,16 @@ ss}
|
||||||
.positionSliderContainer {
|
.positionSliderContainer {
|
||||||
width: 300px;
|
width: 300px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.aspect43 .itemVideo:not(.fullscreenVideo) {
|
||||||
|
width: 900px;
|
||||||
|
margin-left: -450px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#videoPlayer.aspect43 {
|
||||||
|
margin-left: -460px;
|
||||||
|
margin-top: -380px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.status {
|
.status {
|
||||||
|
|
|
@ -278,6 +278,8 @@
|
||||||
|
|
||||||
videoPlayer.fadeIn();
|
videoPlayer.fadeIn();
|
||||||
|
|
||||||
|
checkAspectRatio();
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
$(".mediaFlyoutContainer").on("click", "a", function (e) {
|
$(".mediaFlyoutContainer").on("click", "a", function (e) {
|
||||||
|
@ -322,6 +324,21 @@
|
||||||
fullscreenExited = false;
|
fullscreenExited = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
function checkAspectRatio() {
|
||||||
|
// Resize player window if 4:3 aspect ratio
|
||||||
|
var footer = $("#footer");
|
||||||
|
|
||||||
|
var videoElement = $("video", footer);
|
||||||
|
|
||||||
|
var w = $(videoElement).width();
|
||||||
|
|
||||||
|
var h = $(videoElement).height();
|
||||||
|
|
||||||
|
if (w / h < 1.7) {
|
||||||
|
$("#videoPlayer", footer).addClass("aspect43");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
function changeHandler(event) {
|
function changeHandler(event) {
|
||||||
|
|
||||||
document.addEventListener(event, function () {
|
document.addEventListener(event, function () {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue