fix scroll bar when folding list
This commit is contained in:
parent
b5e8cd0bea
commit
ed18fa77e2
|
|
@ -17,7 +17,7 @@
|
|||
|
||||

|
||||
|
||||
APlayer is a lovely HTML5 music player to help people build audio easily.
|
||||
APlayer is a lovely HTML5 music player.
|
||||
|
||||
**APlayer supports:**
|
||||
|
||||
|
|
|
|||
|
|
@ -106,7 +106,8 @@ const ap5 = new APlayer({
|
|||
lrc: 3,
|
||||
mutex: true,
|
||||
theme: '#ad7a86',
|
||||
listFolded: true,
|
||||
listFolded: false,
|
||||
listMaxHeight: '80px',
|
||||
audio: [{
|
||||
name: '光るなら',
|
||||
artist: 'Goose house',
|
||||
|
|
|
|||
|
|
@ -431,29 +431,34 @@ $aplayer-height-lrc: $aplayer-height + $lrc-height - 6;
|
|||
transition: all 0.5s ease;
|
||||
will-change: height;
|
||||
display: none;
|
||||
overflow: hidden;
|
||||
|
||||
&.aplayer-list-hide {
|
||||
height: 0 !important;
|
||||
}
|
||||
|
||||
&::-webkit-scrollbar{
|
||||
width: 5px;
|
||||
}
|
||||
&::-webkit-scrollbar-track{
|
||||
background-color: #f9f9f9;
|
||||
}
|
||||
&::-webkit-scrollbar-thumb{
|
||||
border-radius: 3px;
|
||||
background-color: #eee;
|
||||
}
|
||||
&::-webkit-scrollbar-thumb:hover{
|
||||
background-color: #ccc;
|
||||
}
|
||||
|
||||
ol {
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
overflow-y: auto;
|
||||
|
||||
&::-webkit-scrollbar {
|
||||
width: 5px;
|
||||
}
|
||||
|
||||
&::-webkit-scrollbar-track {
|
||||
background-color: #f9f9f9;
|
||||
}
|
||||
|
||||
&::-webkit-scrollbar-thumb {
|
||||
border-radius: 3px;
|
||||
background-color: #eee;
|
||||
}
|
||||
|
||||
&::-webkit-scrollbar-thumb:hover {
|
||||
background-color: #ccc;
|
||||
}
|
||||
|
||||
li {
|
||||
position: relative;
|
||||
|
|
|
|||
|
|
@ -154,6 +154,7 @@ class Controller {
|
|||
|
||||
initMenuButton () {
|
||||
this.player.template.list.style.height = 33 * this.player.options.audio.length - 1 + 'px';
|
||||
this.player.template.listOl.style.height = 33 * this.player.options.audio.length - 1 + 'px';
|
||||
this.player.template.menu.addEventListener('click', () => {
|
||||
if (!this.player.template.list.classList.contains('aplayer-list-hide')) {
|
||||
this.player.template.list.classList.add('aplayer-list-hide');
|
||||
|
|
|
|||
|
|
@ -411,6 +411,7 @@ class APlayer {
|
|||
}
|
||||
const songListLength = this.container.querySelectorAll('.aplayer-list li').length;
|
||||
this.template.list.style.height = songListLength * 33 - 1 + 'px';
|
||||
this.template.listOl.style.height = songListLength * 33 - 1 + 'px';
|
||||
|
||||
this.randomOrder = utils.randomOrder(this.options.audio.length);
|
||||
}
|
||||
|
|
@ -445,6 +446,7 @@ class APlayer {
|
|||
this.container.classList.remove('aplayer-withlist');
|
||||
}
|
||||
this.template.list.style.height = parseInt(this.template.list.style.height, 10) - 33 + 'px';
|
||||
this.template.listOl.style.height = parseInt(this.template.listOl.style.height, 10) - 33 + 'px';
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@
|
|||
</div>
|
||||
</div>
|
||||
<div class="aplayer-list{{ if options.listFolded }} aplayer-list-hide{{ /if }}"{{ if options.listMaxHeight }} style="max-height: {{ options.listMaxHeight }}"{{ /if }}>
|
||||
<ol>
|
||||
<ol{{ if options.listMaxHeight }} style="max-height: {{ options.listMaxHeight }}"{{ /if }}>
|
||||
{{each options.audio}}
|
||||
<li>
|
||||
<span class="aplayer-list-cur" style="background: {{ $value.theme || options.theme }};"></span>
|
||||
|
|
|
|||
Loading…
Reference in New Issue