APlayer icon indicating copy to clipboard operation
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

Open waahah opened this issue 1 year ago • 1 comments

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博客的右下角,而不是固定的左下角

waahah avatar Apr 23 '23 19:04 waahah

.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加上好像就行了

jrotty avatar Dec 27 '23 10:12 jrotty