add new theme options
- overlayTextColor - overlayBackgroundColor - hideInfoDropdown
This commit is contained in:
parent
97e3945b41
commit
cc932783bb
1 changed files with 35 additions and 11 deletions
46
index.html
46
index.html
|
@ -26,6 +26,8 @@
|
|||
--previewStripeColor1: #3f3f3f;
|
||||
--previewStripeColor2: #2c2c2c;
|
||||
--linkColor: #838383;
|
||||
--overlayTextColor: var(--primaryTextColor);
|
||||
--overlayBackgroundColor: rgb(0,0,0,0.5);
|
||||
--font: sans-serif;
|
||||
}
|
||||
|
||||
|
@ -216,7 +218,8 @@
|
|||
backdrop-filter: blur(3px);
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: rgba(0, 0, 0, 0.5);
|
||||
color: var(--overlayTextColor);
|
||||
background-color: var(--overlayBackgroundColor);
|
||||
border-radius: 0;
|
||||
display: flex;
|
||||
text-align: center;
|
||||
|
@ -692,6 +695,9 @@
|
|||
.track.active .toggleInfo {
|
||||
color: var(--primaryColor);
|
||||
}
|
||||
.hide-info .track .toggleInfo {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.track .infoContainer {
|
||||
width: 100%;
|
||||
|
@ -701,6 +707,9 @@
|
|||
height: 0px !important;
|
||||
overflow: hidden;
|
||||
}
|
||||
.hide-info .track .infoContainer {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.track .info {
|
||||
padding: 10px;
|
||||
|
@ -860,16 +869,18 @@
|
|||
function updateTheme(theme){
|
||||
config.theme = theme;
|
||||
let rootEl = document.documentElement;
|
||||
if(theme.primaryColor) rootEl.style.setProperty('--primaryColor', theme.primaryColor);
|
||||
if(theme.primaryAltColor) rootEl.style.setProperty('--primaryAltColor', theme.primaryAltColor);
|
||||
if(theme.primaryTextColor) rootEl.style.setProperty('--primaryTextColor', theme.primaryTextColor);
|
||||
if(theme.primaryAltTextColor) rootEl.style.setProperty('--primaryAltTextColor', theme.primaryAltTextColor);
|
||||
if(theme.secondaryColor) rootEl.style.setProperty('--secondaryColor', theme.secondaryColor);
|
||||
if(theme.highlightColor) rootEl.style.setProperty('--highlightColor', theme.highlightColor);
|
||||
if(theme.backgroundColor) rootEl.style.setProperty('--backgroundColor', theme.backgroundColor);
|
||||
if(theme.previewStripeColor1) rootEl.style.setProperty('--previewStripeColor1', theme.previewStripeColor1);
|
||||
if(theme.previewStripeColor2) rootEl.style.setProperty('--previewStripeColor2', theme.previewStripeColor2);
|
||||
if(theme.linkColor) rootEl.style.setProperty('--linkColor', theme.linkColor);
|
||||
if(theme.primaryColor) rootEl.style.setProperty('--primaryColor', theme.primaryColor);
|
||||
if(theme.primaryAltColor) rootEl.style.setProperty('--primaryAltColor', theme.primaryAltColor);
|
||||
if(theme.primaryTextColor) rootEl.style.setProperty('--primaryTextColor', theme.primaryTextColor);
|
||||
if(theme.primaryAltTextColor) rootEl.style.setProperty('--primaryAltTextColor', theme.primaryAltTextColor);
|
||||
if(theme.secondaryColor) rootEl.style.setProperty('--secondaryColor', theme.secondaryColor);
|
||||
if(theme.highlightColor) rootEl.style.setProperty('--highlightColor', theme.highlightColor);
|
||||
if(theme.backgroundColor) rootEl.style.setProperty('--backgroundColor', theme.backgroundColor);
|
||||
if(theme.previewStripeColor1) rootEl.style.setProperty('--previewStripeColor1', theme.previewStripeColor1);
|
||||
if(theme.previewStripeColor2) rootEl.style.setProperty('--previewStripeColor2', theme.previewStripeColor2);
|
||||
if(theme.linkColor) rootEl.style.setProperty('--linkColor', theme.linkColor);
|
||||
if(theme.overlayTextColor) rootEl.style.setProperty('--overlayTextColor', theme.overlayTextColor);
|
||||
if(theme.overlayBackgroundColor) rootEl.style.setProperty('--overlayBackgroundColor', theme.overlayBackgroundColor);
|
||||
if(theme.layoutStyle){
|
||||
mainContainerEl.classList.remove('vertical', 'horizontal');
|
||||
mainContainerEl.classList.add(theme.layoutStyle);
|
||||
|
@ -890,6 +901,11 @@
|
|||
document.getElementById('audio').classList.remove('native');
|
||||
mediaVideoEl.removeAttribute('controls');
|
||||
}
|
||||
if(theme.hideInfoDropdown){
|
||||
mainContainerEl.classList.add('hide-info');
|
||||
} else {
|
||||
mainContainerEl.classList.remove('hide-info');
|
||||
}
|
||||
mediaContainerEl.style.maxWidth = theme.coverSize + 'px';
|
||||
mediaContainerEl.style.maxHeight = theme.coverSize + 'px';
|
||||
mediaColumnEl.style.maxWidth = theme.coverSize + 'px';
|
||||
|
@ -1166,6 +1182,14 @@
|
|||
mediaImageEl.style.visibility = 'hidden';
|
||||
}
|
||||
}
|
||||
|
||||
function setCover(cover, size){
|
||||
if(cover){
|
||||
config.cover = cover;
|
||||
size && (config.coverSize = size);
|
||||
loadCover(cover)
|
||||
}
|
||||
}
|
||||
|
||||
playerEl.addEventListener('canplay', e => {
|
||||
removeLoading(currentEntry);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue