tn-tabbar.wxss 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. @charset "UTF-8";
  2. /**
  3. * 下方引入的为Tuniao UI的集成样式文件,为scss预处理器,其中包含了一些"tn-"开头的自定义变量
  4. * 使用的时候,请将下面的一行复制到您的uniapp项目根目录的uni.scss中即可
  5. * Tuniao UI自定义的css类名和scss变量,均以"tn-"开头,不会造成冲突,请放心使用
  6. */
  7. .tn-tabbar__content.data-v-3972e4a0 {
  8. box-sizing: content-box;
  9. display: flex;
  10. flex-direction: row;
  11. align-items: center;
  12. position: relative;
  13. width: 100%;
  14. z-index: 1024;
  15. }
  16. .tn-tabbar__content__out.data-v-3972e4a0 {
  17. position: absolute;
  18. z-index: 4;
  19. border-radius: 100%;
  20. left: 50%;
  21. -webkit-transform: translateX(-50%);
  22. transform: translateX(-50%);
  23. }
  24. .tn-tabbar__content__out--shadow.data-v-3972e4a0 {
  25. box-shadow: 0rpx -10rpx 30rpx 0rpx rgba(0, 0, 0, 0.05);
  26. }
  27. .tn-tabbar__content__out--shadow.data-v-3972e4a0::before {
  28. content: " ";
  29. position: absolute;
  30. width: 100%;
  31. height: 50rpx;
  32. bottom: 0;
  33. left: 0;
  34. right: 0;
  35. margin: auto;
  36. background-color: inherit;
  37. }
  38. .tn-tabbar__content__out--animation--scale.data-v-3972e4a0 {
  39. -webkit-transform-origin: 50% 100%;
  40. transform-origin: 50% 100%;
  41. -webkit-animation: tabbar-content-out-click-data-v-3972e4a0 0.2s forwards 1 ease-in-out;
  42. animation: tabbar-content-out-click-data-v-3972e4a0 0.2s forwards 1 ease-in-out;
  43. }
  44. .tn-tabbar__content__item.data-v-3972e4a0 {
  45. flex: 1;
  46. display: flex;
  47. flex-direction: column;
  48. justify-content: flex-end;
  49. align-items: center;
  50. height: 100%;
  51. position: relative;
  52. }
  53. .tn-tabbar__content__item__button.data-v-3972e4a0 {
  54. margin-bottom: 10rpx;
  55. display: flex;
  56. align-items: center;
  57. justify-content: center;
  58. position: relative;
  59. }
  60. .tn-tabbar__content__item__button--out.data-v-3972e4a0 {
  61. margin-bottom: 10rpx;
  62. border-radius: 50%;
  63. position: absolute;
  64. display: flex;
  65. justify-content: center;
  66. align-items: center;
  67. z-index: 6;
  68. }
  69. .tn-tabbar__content__item__button--out--animation--scale.data-v-3972e4a0 {
  70. -webkit-transform-origin: 50% 100%;
  71. transform-origin: 50% 100%;
  72. -webkit-animation: tabbar-item-button-out-click-data-v-3972e4a0 0.2s forwards 1;
  73. animation: tabbar-item-button-out-click-data-v-3972e4a0 0.2s forwards 1;
  74. }
  75. .tn-tabbar__content__item__button--animation--scale .tn-tabbar__content__item__icon.data-v-3972e4a0, .tn-tabbar__content__item__button--animation--scale .tn-tabbar__content__item__image.data-v-3972e4a0 {
  76. -webkit-transform-origin: 50% 100%;
  77. transform-origin: 50% 100%;
  78. -webkit-animation: tabbar-item-button-click-data-v-3972e4a0 0.2s forwards 1;
  79. animation: tabbar-item-button-click-data-v-3972e4a0 0.2s forwards 1;
  80. }
  81. .tn-tabbar__content__item__icon--clip.data-v-3972e4a0 {
  82. -webkit-background-clip: text;
  83. color: transparent !important;
  84. }
  85. .tn-tabbar__content__item__text.data-v-3972e4a0 {
  86. width: 100%;
  87. font-size: 26rpx;
  88. line-height: 28rpx;
  89. text-align: center;
  90. margin-bottom: 10rpx;
  91. z-index: 10;
  92. transition: all 0.2s ease-in-out;
  93. }
  94. .tn-tabbar__content__item--out.data-v-3972e4a0 {
  95. height: calc(100% - 1px);
  96. }
  97. .tn-tabbar--fixed.data-v-3972e4a0 {
  98. position: fixed;
  99. bottom: 0;
  100. left: 0;
  101. right: 0;
  102. }
  103. .tn-tabbar--shadow.data-v-3972e4a0 {
  104. box-shadow: 0rpx 0rpx 30rpx 0rpx rgba(0, 0, 0, 0.07);
  105. }
  106. /* 点击动画 start */
  107. @-webkit-keyframes tabbar-item-button-click-data-v-3972e4a0 {
  108. from {
  109. -webkit-transform: scale(0.8);
  110. transform: scale(0.8);
  111. }
  112. to {
  113. -webkit-transform: scale(1);
  114. transform: scale(1);
  115. }
  116. }
  117. @keyframes tabbar-item-button-click-data-v-3972e4a0 {
  118. from {
  119. -webkit-transform: scale(0.8);
  120. transform: scale(0.8);
  121. }
  122. to {
  123. -webkit-transform: scale(1);
  124. transform: scale(1);
  125. }
  126. }
  127. @-webkit-keyframes tabbar-item-button-out-click-data-v-3972e4a0 {
  128. 0% {
  129. -webkit-transform: translateY(0) scale(1);
  130. transform: translateY(0) scale(1);
  131. }
  132. 50% {
  133. -webkit-transform: translateY(-10rpx) scale(1.2);
  134. transform: translateY(-10rpx) scale(1.2);
  135. }
  136. 100% {
  137. -webkit-transform: translateY(0) scale(1);
  138. transform: translateY(0) scale(1);
  139. }
  140. }
  141. @keyframes tabbar-item-button-out-click-data-v-3972e4a0 {
  142. 0% {
  143. -webkit-transform: translateY(0) scale(1);
  144. transform: translateY(0) scale(1);
  145. }
  146. 50% {
  147. -webkit-transform: translateY(-10rpx) scale(1.2);
  148. transform: translateY(-10rpx) scale(1.2);
  149. }
  150. 100% {
  151. -webkit-transform: translateY(0) scale(1);
  152. transform: translateY(0) scale(1);
  153. }
  154. }
  155. @-webkit-keyframes tabbar-content-out-click-data-v-3972e4a0 {
  156. 0% {
  157. -webkit-transform: translateX(-50%) translateY(0) scale(1);
  158. transform: translateX(-50%) translateY(0) scale(1);
  159. }
  160. 50% {
  161. -webkit-transform: translateX(-50%) translateY(-10rpx) scale(1.1);
  162. transform: translateX(-50%) translateY(-10rpx) scale(1.1);
  163. }
  164. 100% {
  165. -webkit-transform: translateX(-50%) translateY(0) scale(1);
  166. transform: translateX(-50%) translateY(0) scale(1);
  167. }
  168. }
  169. @keyframes tabbar-content-out-click-data-v-3972e4a0 {
  170. 0% {
  171. -webkit-transform: translateX(-50%) translateY(0) scale(1);
  172. transform: translateX(-50%) translateY(0) scale(1);
  173. }
  174. 50% {
  175. -webkit-transform: translateX(-50%) translateY(-10rpx) scale(1.1);
  176. transform: translateX(-50%) translateY(-10rpx) scale(1.1);
  177. }
  178. 100% {
  179. -webkit-transform: translateX(-50%) translateY(0) scale(1);
  180. transform: translateX(-50%) translateY(0) scale(1);
  181. }
  182. }
  183. /* 点击动画 end */