视频播放器仓库

Seek.css 439B

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