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.
 
 
 
 

16 lines
485 B

// 画三角形 参数:宽度,朝向,颜色
@mixin triangle($width: 10px, $direction: top, $color: $uni-color-main) {
border: $width solid transparent;
@if ($direction == top) { // 上三角
border-bottom-color: $color;
}
@if ($direction == bottom) { // 下三角
border-top-color: $color;
}
@if ($direction == left) { // 左三角
border-right-color: $color;
}
@if ($direction == right) { // 右三角
border-left-color: $color;
}
}