lg-autoplay.css 745 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. .lg-progress-bar {
  2. background-color: #333;
  3. height: 5px;
  4. left: 0;
  5. position: absolute;
  6. top: 0;
  7. width: 100%;
  8. z-index: 1083;
  9. opacity: 0;
  10. will-change: opacity;
  11. -webkit-transition: opacity 0.08s ease 0s;
  12. -moz-transition: opacity 0.08s ease 0s;
  13. -o-transition: opacity 0.08s ease 0s;
  14. transition: opacity 0.08s ease 0s;
  15. }
  16. .lg-progress-bar .lg-progress {
  17. background-color: #a90707;
  18. height: 5px;
  19. width: 0;
  20. }
  21. .lg-progress-bar.lg-start .lg-progress {
  22. width: 100%;
  23. }
  24. .lg-show-autoplay .lg-progress-bar {
  25. opacity: 1;
  26. }
  27. .lg-autoplay-button:after {
  28. content: '\e01d';
  29. }
  30. .lg-show-autoplay .lg-autoplay-button:after {
  31. content: '\e01a';
  32. }
  33. .lg-single-item .lg-autoplay-button {
  34. opacity: 0.75;
  35. pointer-events: none;
  36. }