uni-events-helper-wx
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.

15 lines
485 B

3 years ago
  1. // 画三角形 参数:宽度,朝向,颜色
  2. @mixin triangle($width: 10px, $direction: top, $color: $uni-color-main) {
  3. border: $width solid transparent;
  4. @if ($direction == top) { // 上三角
  5. border-bottom-color: $color;
  6. }
  7. @if ($direction == bottom) { // 下三角
  8. border-top-color: $color;
  9. }
  10. @if ($direction == left) { // 左三角
  11. border-right-color: $color;
  12. }
  13. @if ($direction == right) { // 右三角
  14. border-left-color: $color;
  15. }
  16. }