Chip

ion-chip

Chip 表示小块中的复杂实体,例如联系人。

使用

<ion-chip>
  <ion-label>Default</ion-label>
</ion-chip>

<ion-chip>
  <ion-label color="secondary">Secondary Label</ion-label>
</ion-chip>

<ion-chip color="secondary">
  <ion-label color="dark">Secondary w/ Dark label</ion-label>
</ion-chip>

<ion-chip color="danger">
  <ion-label>Danger</ion-label>
</ion-chip>

<ion-chip>
  <ion-icon name="pin"></ion-icon>
  <ion-label>Default</ion-label>
</ion-chip>

<ion-chip>
  <ion-icon name="heart" color="dark"></ion-icon>
  <ion-label>Default</ion-label>
</ion-chip>

<ion-chip>
  <ion-avatar>
    <img src="img/my-img.png">
  </ion-avatar>
  <ion-label>Default</ion-label>
</ion-chip>

高级

<ion-chip #chip1>
  <ion-label>Default</ion-label>
  <button ion-button clear color="light" (click)="delete(chip1)">
    <ion-icon name="close-circle"></ion-icon>
  </button>
</ion-chip>

<ion-chip #chip2>
  <ion-icon name="pin" color="primary"></ion-icon>
  <ion-label>With Icon</ion-label>
  <button ion-button (click)="delete(chip2)">
    <ion-icon name="close"></ion-icon>
  </button>
</ion-chip>

<ion-chip #chip3>
  <ion-avatar>
    <img src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAAAAACH5BAAAAAAALAAAAAABAAEAAAICTAEAOw==">
  </ion-avatar>
  <ion-label>With Avatar</ion-label>
  <button ion-button clear color="dark" (click)="delete(chip3)">
    <ion-icon name="close-circle"></ion-icon>
  </button>
</ion-chip>
@Component({
  templateUrl: 'main.html'
})
class E2EPage {
  delete(chip: Element) {
    chip.remove();
  }
}

效果:

Sass 变量

  • All

属性 默认值 描述
$chip-button-border-radius 50% Border radius of the button in the chip
$chip-button-margin 0 Margin of the button in the chip
$chip-button-size 32px Width and height of the button in the chip
$chip-icon-border-radius 50% Border radius of the icon in the chip
$chip-icon-text-align center Text alignment of the icon in the chip
$chip-icon-size 32px Width and height of the icon in the chip
$chip-icon-font-size 18px Font size of the icon in the chip
$chip-avatar-size 32px Width and height of the avatar in the chip
$chip-avatar-border-radius 50% Border radius of the avatar in the chip
  • iOS

属性 默认值 描述
$chip-ios-margin 2px 0 Margin of the chip
$chip-ios-height 32px Height of the chip
$chip-ios-border-radius 16px Border radius of the chip
$chip-ios-font-size 13px Font size of the chip
$chip-ios-text-color rgba(0, 0, 0, .87) Text color of the chip
$chip-ios-background-color rgba(0, 0, 0, .12) Background color of the chip
$chip-ios-label-margin 0 10px Margin of the label in the chip
$chip-ios-icon-background-color color($colors-ios, primary) Background color of the icon in the chip
$chip-ios-icon-text-color color-contrast($colors-ios, $chip-ios-icon-background-color) Text color of the icon in the chi
  • Material Design

属性 默认值 描述
$chip-md-margin 2px 0 Margin of the chip
$chip-md-height 32px Height of the chip
$chip-md-border-radius 16px Border radius of the chip
$chip-md-font-size 13px Font size of the chip
$chip-md-text-color rgba(0, 0, 0, .87) Text color of the chip
$chip-md-background-color rgba(0, 0, 0, .12) Background color of the chip
$chip-md-label-margin 0 10px Margin of the label in the chip
$chip-md-icon-background-color color($colors-md, primary) Background color of the icon in the chip
$chip-md-icon-text-color color-contrast($colors-md, $chip-md-icon-background-color) Text color of the icon in the chip
  • Windows Platform

属性 默认值 描述
$chip-wp-margin 2px 0 Margin of the chip
$chip-wp-height 32px Height of the chip
$chip-wp-border-radius 16px Border radius of the chip
$chip-wp-font-size 13px Font size of the chip
$chip-wp-text-color rgba(0, 0, 0, .87) Text color of the chip
$chip-wp-background-color rgba(0, 0, 0, .12) Background color of the chip
$chip-wp-label-margin 0 10px Margin of the label in the chip
$chip-wp-icon-background-color color($colors-wp, primary) Background color of the icon in the chip
$chip-wp-icon-text-color color-contrast($colors-wp, $chip-wp-icon-background-color) Text color of the icon in the chip

results matching ""

    No results matching ""