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.

index.less 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. @keyframes fadeInUp {
  2. from {
  3. opacity: 0;
  4. transform: translate3d(0, 100%, 0);
  5. }
  6. to {
  7. opacity: 1;
  8. transform: translate3d(0, 0, 0);
  9. }
  10. }
  11. @keyframes fadeInLeft {
  12. from {
  13. opacity: 0;
  14. transform: translate3d(-50%, 0, 0);
  15. }
  16. to {
  17. opacity: 1;
  18. transform: translate3d(0, 0, 0);
  19. }
  20. }
  21. @keyframes fadeInRight {
  22. from {
  23. opacity: 0;
  24. transform: translate3d(50%, 0, 0);
  25. }
  26. to {
  27. opacity: 1;
  28. transform: translate3d(0, 0, 0);
  29. }
  30. }
  31. @keyframes fadeOutRight {
  32. from {
  33. opacity: 0;
  34. transform: translate3d(0, 0, 0);
  35. }
  36. to {
  37. opacity: 1;
  38. transform: translate3d(120%, 0, 0);
  39. }
  40. }
  41. @keyframes fadeInDown {
  42. from {
  43. opacity: 0;
  44. transform: translate3d(0, -50%, 0);
  45. }
  46. to {
  47. opacity: 1;
  48. transform: translate3d(0, 0, 0);
  49. }
  50. }
  51. .animate-fade-in-up {
  52. animation-name: fadeInUp;
  53. animation-duration: 0.5s;
  54. animation-fill-mode: both;
  55. }
  56. .animate-fade-in-down {
  57. animation-name: fadeInDown;
  58. animation-duration: 0.5s;
  59. animation-fill-mode: both;
  60. }
  61. .animate-fade-in-left {
  62. animation-name: fadeInLeft;
  63. animation-duration: 0.5s;
  64. animation-fill-mode: both;
  65. }
  66. .animate-fade-in-right {
  67. animation-name: fadeInRight;
  68. animation-duration: 0.5s;
  69. animation-fill-mode: both;
  70. }
  71. .animate-fade-out-right {
  72. animation-name: fadeOutRight;
  73. animation-duration: 0.5s;
  74. animation-fill-mode: both;
  75. }
  76. .delay-100 {
  77. animation-delay: 0.1s;
  78. }
  79. .delay-200 {
  80. animation-delay: 0.2s;
  81. }
  82. .delay-300 {
  83. animation-delay: 0.3s;
  84. }
  85. .delay-400 {
  86. animation-delay: 0.4s;
  87. }
  88. .delay-500 {
  89. animation-delay: 0.5s;
  90. }
  91. .delay-600 {
  92. animation-delay: 0.6s;
  93. }
  94. .delay-700 {
  95. animation-delay: 0.7s;
  96. }
  97. .highlightContent {
  98. .multipleLineEllipsis(2);
  99. em {
  100. color: red;
  101. font-style: normal;
  102. }
  103. }