friends_match.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. @import "../../utils/animate.wxss";
  2. @import "../../utils/base_bg.wxss";
  3. .header{
  4. display: flex;
  5. justify-content: space-between;
  6. align-items: center;
  7. padding: 60rpx;
  8. font-size: 32rpx;
  9. }
  10. .header image{
  11. width: 120rpx;
  12. height: 120rpx;
  13. border-radius: 50%;
  14. border: 6rpx solid #fff;
  15. }
  16. .animated {
  17. animation-duration: 2s;
  18. animation-fill-mode: forwards;
  19. }
  20. .lightSpeedIn-left {
  21. animation-name: lightSpeedIn-left;
  22. animation-timing-function: ease-out;
  23. }
  24. @keyframes lightSpeedIn-left {
  25. from {
  26. transform: translate3d(-600%, 0, 0) skewX(-15deg);
  27. opacity: 0;
  28. }
  29. 60% {
  30. transform: skewX(15deg);
  31. opacity: 1;
  32. }
  33. 80% {
  34. transform: skewX(-5deg);
  35. opacity: 1;
  36. }
  37. to {
  38. transform: none;
  39. opacity: 1;
  40. }
  41. }
  42. .lightSpeedIn-right {
  43. animation-name: lightSpeedIn-right;
  44. animation-timing-function: ease-out;
  45. }
  46. @keyframes lightSpeedIn-right {
  47. from {
  48. transform: translate3d(600%, 0, 0) skewX(15deg);
  49. opacity: 0;
  50. }
  51. 60% {
  52. transform: skewX(-15deg);
  53. opacity: 1;
  54. }
  55. 80% {
  56. transform: skewX(5deg);
  57. opacity: 1;
  58. }
  59. to {
  60. transform: none;
  61. opacity: 1;
  62. }
  63. }
  64. .body{
  65. display: flex;
  66. justify-content: center;
  67. align-items: center;
  68. font-size: 28rpx;
  69. color: #1396DB;
  70. margin-top: 300rpx;
  71. }
  72. .body .containCircle{
  73. width: 160rpx;
  74. height: 160rpx;
  75. border-radius: 50%;
  76. border: 4rpx solid #fff;
  77. background: #fff;
  78. display: flex;
  79. flex-direction: column;
  80. justify-content: center;
  81. align-content:center;
  82. align-items: center;
  83. margin: 30rpx;
  84. font-size: 28rpx;
  85. color: #1295DA;
  86. line-height: 30rpx;
  87. opacity: 0;
  88. }
  89. .body image{
  90. width: 80rpx;
  91. height: 80rpx;
  92. }
  93. .animated-slow {
  94. animation-duration: 1.5s;
  95. animation-fill-mode: forwards;
  96. animation-delay: 1.2s;
  97. }