Ionic > Rating Star 구현하기 (별을 붙이는 사람)
3320 단어 ionic
↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓
사용하는 것은 ionic-range + CSS
html
<ion-range min="1" max="5" step="1" snaps="true" class="rate-starts" margin-right [(ngModel)]="rate">
</ion-range>
css
ion-range.rate-starts {
font-family: "Ionicons"
}
ion-range.rate-starts .range-tick {
background: transparent;
}
ion-range.rate-starts .range-tick:before {
content: '\f4b2';
color: #eed755;
font-size: 4rem;
position: absolute;
left: -17px;
top: -21px;
}
ion-range.rate-starts .range-tick.range-tick-active:before {
content: '\f4b3';
}
ion-range .range-knob-handle {
display: none;
}
ion-range.rate-starts .range-bar {
background: transparent;
}
CSS는 assets에 파일을 추가하고 index.html에서 읽었습니다. ( host :/deep/, >>> 의 대체를 찾을 수 없기 때문에 ).
아이콘은 Ionic 글꼴을 유용합니다. 여기는 약간의 아이디어입니다.
Reference
이 문제에 관하여(Ionic > Rating Star 구현하기 (별을 붙이는 사람)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/hedrall/items/1d60ee4c08a430fd9d53텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)