APlayer icon indicating copy to clipboard operation
APlayer copied to clipboard

Fixed Mode position

Open du33169 opened this issue 6 years ago • 1 comments

It may be better if the position of the player(left/right) is switchable.

du33169 avatar Jan 25 '19 09:01 du33169

if you use vue & less in you project,above styles can help you change APlayer to right side

.aplayer {
  left: unset;
  ::v-deep {
    .aplayer-list {
      width: 400px;
    }
    .aplayer-body {
      left: unset;
      padding-right: 0;
      .aplayer-miniswitcher {
        right: unset;
        left: -18px;
        transform: rotate(180deg);
      }
    }
  }
}

arika163 avatar May 05 '20 13:05 arika163