APlayer
APlayer copied to clipboard
How do I put aplayer with fixed mode enabled in the lower-right corner of the hexo blog instead of the lower-left corner
How do I put aplayer with fixed mode enabled in the lower-right corner of the hexo blog instead of the lower-left corner
请问如何将开启fixed模式的aplayer放到hexo博客的右下角,而不是固定的左下角
.aplayer.aplayer-fixed {
left: unset !important;
color: #000;
width: 100%;
}
.aplayer.aplayer-fixed .aplayer-body{
left: unset !important;
width: 400px !important;
max-width: calc(100% - 18px);
padding-right: 0 !important;
}
.aplayer.aplayer-fixed .aplayer-miniswitcher {
right: unset;
left: -18px;
transform: rotate(180deg);
}
最近刚好我也有这个需求,这几条css加上好像就行了