视频播放器仓库

12345678910111213141516171819202122232425262728293031323334353637383940
  1. .component {
  2. position: absolute;
  3. left: 34px;
  4. height: 34px;
  5. right: 178px;
  6. }
  7. .track {
  8. position: absolute;
  9. top: 50%;
  10. left: 5px;
  11. right: 5px;
  12. height: 4px;
  13. transform: translateY(-50%);
  14. background-color: #3e3e3e;
  15. }
  16. .buffer,
  17. .fill,
  18. .input {
  19. position: absolute;
  20. top: 0;
  21. left: 0;
  22. height: 100%;
  23. }
  24. .buffer {
  25. background-color: #5a5a5a;
  26. }
  27. .fill {
  28. background: #fff;
  29. }
  30. .input {
  31. width: 100%;
  32. opacity: 0;
  33. cursor: pointer;
  34. }