视频播放器仓库

DefaultPlayer.css 443B

1234567891011121314151617181920212223242526272829303132
  1. .component {
  2. position: relative;
  3. font-family: Helvetica;
  4. font-size: 11px;
  5. background-color: #000;
  6. }
  7. .video {
  8. width: 100%;
  9. height: 100%;
  10. }
  11. .controls {
  12. position: absolute;
  13. bottom: 0;
  14. right: 0;
  15. left: 0;
  16. height: 34px;
  17. display: flex;
  18. background-color: rgba(0,0,0,0.7);
  19. opacity: 0;
  20. transition: opacity 0.2s;
  21. }
  22. .seek {
  23. flex-grow: 1;
  24. }
  25. .component:hover .controls {
  26. opacity: 1;
  27. }