天波h5前端应用
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

126 rindas
2.5KB

  1. $designWidth: 750;
  2. $blue: #2599ff;
  3. $next: #8bc6fa;
  4. $red: #ff8c8c;
  5. $background: #f2f4f5;
  6. $border_color: #d1d1d1;
  7. /* 绑定时选择人物关系图片head.png */
  8. $spriteWidthHead: 180;
  9. $spriteHeightHead: 330;
  10. $iconWidthHead: 80;
  11. $iconHeightHead: 80;
  12. /* 雪碧图 */
  13. $spriteWidth: 400;
  14. $spriteHeight: 400;
  15. /* tabbar */
  16. $tabbarH: 60px;
  17. /* navbar */
  18. $navbarH: 46px;
  19. /* @function px2rem($px) {
  20. @return $px*320/$designWidth/20+rem;
  21. } */
  22. @-webkit-keyframes rotation {
  23. from {
  24. -webkit-transform: rotate(0deg);
  25. }
  26. to {
  27. -webkit-transform: rotate(360deg);
  28. }
  29. }
  30. @mixin colorAndFont($color, $fontSize) {
  31. color: $color;
  32. font-size: ($fontSize)px;
  33. }
  34. @mixin center {
  35. display: flex;
  36. justify-content: center;
  37. align-items: center;
  38. }
  39. @mixin boxShadow($color...) {
  40. @if $color {
  41. box-shadow: 0 0 10px $color;
  42. } @else {
  43. box-shadow: 0 0 10px rgba(185, 185, 185, .9);
  44. }
  45. }
  46. @mixin avatarShadow {
  47. box-shadow: 0 0 1px 1px rgba(185, 185, 185, 0.4);
  48. }
  49. @mixin avatarActiveShadow {
  50. box-shadow: 0 0 5px 1px rgba(185, 185, 185, 0.4);
  51. }
  52. @mixin avatarOnlineShadow {
  53. box-shadow: 0 0 1px 1px rgba(95, 204, 14, 0.4);
  54. }
  55. @mixin avatarActiveOnlineShadow {
  56. box-shadow: 0 0 5px 1px rgba(95, 204, 14, 0.4);
  57. }
  58. @mixin border {
  59. position: absolute;
  60. box-sizing: border-box;
  61. content: ' ';
  62. pointer-events: none;
  63. top: -50%;
  64. right: -50%;
  65. bottom: -50%;
  66. left: -50% !important;
  67. border-bottom: 1px solid $border_color;
  68. -webkit-transform: scale(.5);
  69. transform: scale(.5);
  70. }
  71. // 雪碧图位置的处理
  72. @mixin bgPosition(
  73. $spriteWidth,
  74. $spriteHeight,
  75. $iconWidth,
  76. $iconHeight,
  77. $iconX,
  78. $iconY
  79. ) {
  80. background-position: (
  81. ($iconX / ($spriteWidth - $iconWidth)) * 100% ($iconY / ($spriteHeight - $iconHeight)) * 100%
  82. );
  83. }
  84. // 雪碧图
  85. @mixin icon_position($iconWidth, $iconHeight, $iconX, $iconY) {
  86. @include bgPosition(
  87. $spriteWidth,
  88. $spriteHeight,
  89. $iconWidth,
  90. $iconHeight,
  91. $iconX,
  92. $iconY
  93. );
  94. }
  95. // 雪碧图路径
  96. @mixin icon($spriteUrl, $iconW, $iconH, $containerW, $containerH) {
  97. background: transparent url($spriteUrl) no-repeat;
  98. background-size: (400 * $iconW / $containerW)px (400 * $iconH / $containerH)px;
  99. }
  100. // 绑定时选择人物关系图片head.png
  101. @mixin head_position($iconX, $iconY) {
  102. @include bgPosition(
  103. $spriteWidthHead,
  104. $spriteHeightHead,
  105. $iconWidthHead,
  106. $iconHeightHead,
  107. $iconX,
  108. $iconY
  109. );
  110. }