Aplayer歌曲列表滑动出现
当Aplayer的侧边 ‘>’按钮被点击后,Aplayer整体滑出,然后歌曲列表缓慢滑出。比起直接出现,观感应该会好一些。
This commit is contained in:
parent
c3381bcc8a
commit
326f3e1f3f
|
@ -782,16 +782,25 @@ if(mashiro_option.float_player_on) {
|
||||||
lrcTag = 2;
|
lrcTag = 2;
|
||||||
});
|
});
|
||||||
var apSwitchTag = 0;
|
var apSwitchTag = 0;
|
||||||
|
var aplayerlist=$(".aplayer-list");
|
||||||
|
aplayerlist.removeClass( "aplayer-list-hide" );
|
||||||
|
aplayerlist.css({maxHeight:'0px'});
|
||||||
$(".aplayer.aplayer-fixed .aplayer-body").addClass("ap-hover");
|
$(".aplayer.aplayer-fixed .aplayer-body").addClass("ap-hover");
|
||||||
$(".aplayer-miniswitcher").click(function(){
|
$(".aplayer-miniswitcher").click(function(){
|
||||||
if (apSwitchTag == 0) {
|
if (apSwitchTag == 0) {
|
||||||
|
aplayerlist.removeClass( "aplayer-list-hide" );
|
||||||
|
aplayerlist.animate({maxHeight:'250px'});
|
||||||
$(".aplayer.aplayer-fixed .aplayer-body").removeClass( "ap-hover" );
|
$(".aplayer.aplayer-fixed .aplayer-body").removeClass( "ap-hover" );
|
||||||
apSwitchTag = 1;
|
apSwitchTag = 1;
|
||||||
} else {
|
} else {
|
||||||
|
aplayerlist.css({maxHeight:'0px'});
|
||||||
$(".aplayer.aplayer-fixed .aplayer-body").addClass( "ap-hover" );
|
$(".aplayer.aplayer-fixed .aplayer-body").addClass( "ap-hover" );
|
||||||
apSwitchTag =0;
|
apSwitchTag =0;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
$(".aplayer-icon-loop").click(function(){
|
||||||
|
|
||||||
|
});
|
||||||
}
|
}
|
||||||
var b = 'https://api.i-meto.com/meting/api?server=:server&type=:type&id=:id&r=:r';
|
var b = 'https://api.i-meto.com/meting/api?server=:server&type=:type&id=:id&r=:r';
|
||||||
'undefined' != typeof meting_api && (b = meting_api);
|
'undefined' != typeof meting_api && (b = meting_api);
|
||||||
|
|
Loading…
Reference in New Issue