黄石人流数据大屏
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
967 B

2 weeks ago
  1. .chartNum{
  2. display: flex;
  3. justify-content: center;
  4. margin-top: 0.25rem;
  5. }
  6. .box-items {
  7. position: relative;
  8. display: flex;
  9. height: 0.6rem;
  10. text-align: center;
  11. }
  12. /*滚动数字设置*/
  13. .number-item {
  14. display: flex;
  15. justify-content: center;
  16. text-align: center;
  17. width: 0.45rem;
  18. height: 0.6rem;
  19. line-height: 0.6rem;
  20. margin-right: 0.125rem;
  21. border: 1px solid #2C75E0;
  22. }
  23. .number-item span{
  24. position: relative;
  25. display: inline-block;
  26. width: 100%;
  27. height: 100%;
  28. writing-mode: vertical-rl;
  29. text-orientation: upright;
  30. overflow: hidden;
  31. }
  32. .number-item span i{
  33. font-style: normal;
  34. position: absolute;
  35. top: 0.1rem;
  36. left: 50%;
  37. font-size: 0.325rem;
  38. font-weight: bold;
  39. color: #1AC9FF;
  40. transform: translate(-50%,0);
  41. transition: transform 1s ease-in-out;
  42. letter-spacing: 10px;
  43. }
  44. .number-item:last-child {
  45. margin-right: 0;
  46. }