Ionic 3 圓形進(jìn)度條 + 漸變色

新建項目
$ ionic start myapp blank
安裝第三方庫
$ npm install angular-svg-round-progressbar --save
導(dǎo)入模塊

src/app/app.module.ts 中導(dǎo)入 RoundProgressModule:

import { RoundProgressModule } from 'angular-svg-round-progressbar';

@NgModule({
  declarations: [
    MyApp,
    HomePage
  ],
  imports: [
    BrowserModule,
    IonicModule.forRoot(MyApp),
    RoundProgressModule
  ],
  bootstrap: [IonicApp],
  entryComponents: [
    MyApp,
    HomePage
  ],
  providers: [
    StatusBar,
    SplashScreen,
    {provide: ErrorHandler, useClass: IonicErrorHandler}
  ]
})
export class AppModule {}
具體實現(xiàn)

home.html

<ion-header>
  <ion-navbar>
    <ion-title>
      angular-svg-round-progressbar
    </ion-title>
  </ion-navbar>
</ion-header>

<ion-content padding>
  <div class="container">
    <h2>Sample progressbar</h2>

    <div class="progress-wrapper">
      <div class="current" [ngStyle]="getOverlayStyle()">{{ current }}/{{ max }}</div>

      <round-progress [current]="current" [max]="max" [color]="color" [background]="background">
      </round-progress>
    </div>

    <h2>Partial colors</h2>
    <div class="progress-wrapper">
      <div class="current" [ngStyle]="getOverlayStyle()">{{ current }}/{{ max }}</div>

      <round-progress [current]="current" [max]="max" [color]="gradient ? 'url(#gradient)' : color" [background]="background">
      </round-progress>
    </div>
  </div>

  <svg>
    <linearGradient id="gradient" x1="0" x2="0" y1="0" y2="1">
      <stop offset="5%" stop-color="green" />
      <stop offset="95%" stop-color="gold" />
    </linearGradient>
  </svg>
</ion-content>

home.ts

import { Component, } from '@angular/core';
import { NavController } from 'ionic-angular';

@Component({
  selector: 'page-home',
  templateUrl: 'home.html'
})
export class HomePage {
  current: number = 80;
  max: number = 100;
  color: string = '#45ccce';
  background: string = '#eaeaea';
  gradient: boolean = true;
  radius: number = 125;

  constructor(public navCtrl: NavController) { }

  getOverlayStyle() {
    let transform = 'translateY(-50%) ' + 'translateX(-50%)';

    return {
      'top': '50%',
      'bottom': 'auto',
      'left': '50%',
      'transform': transform,
      '-moz-transform': transform,
      '-webkit-transform': transform,
      'font-size': this.radius / 3.5 + 'px'
    };
  }

}

home.scss

page-home {
  * {
    box-sizing: border-box;
  }
  body {
    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: #fafafa;
  }
  h2 {
    margin: 0 0 20px;
  }
  .progress-wrapper {
    position: relative;
    margin: 20px auto;
    font-size: 20px;
  }
  .current {
    position: absolute;
    color: #bbb;
    font-weight: 100;
    line-height: 1;
  }
  round-progress {
    margin: auto;
    width: 200px !important;
    height: 200px !important;
  }
  .container {
    width: 100%;
    text-align: center;
  }
}
參考鏈接

1.https://github.com/crisbeto/angular-svg-round-progressbar
2.https://developer.mozilla.org/en-US/docs/Web/SVG/Tutorial/Gradients

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末蕴潦,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子耻瑟,更是在濱河造成了極大的恐慌甲喝,老刑警劉巖靶衍,帶你破解...
    沈念sama閱讀 211,265評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異,居然都是意外死亡崭闲,警方通過查閱死者的電腦和手機(jī)吝岭,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,078評論 2 385
  • 文/潘曉璐 我一進(jìn)店門三痰,熙熙樓的掌柜王于貴愁眉苦臉地迎上來吧寺,“玉大人,你說我怎么就攤上這事散劫〈橹矗” “怎么了?”我有些...
    開封第一講書人閱讀 156,852評論 0 347
  • 文/不壞的土叔 我叫張陵舷丹,是天一觀的道長抒钱。 經(jīng)常有香客問我,道長颜凯,這世上最難降的妖魔是什么谋币? 我笑而不...
    開封第一講書人閱讀 56,408評論 1 283
  • 正文 為了忘掉前任,我火速辦了婚禮症概,結(jié)果婚禮上蕾额,老公的妹妹穿的比我還像新娘。我一直安慰自己彼城,他們只是感情好诅蝶,可當(dāng)我...
    茶點故事閱讀 65,445評論 5 384
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著募壕,像睡著了一般调炬。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上舱馅,一...
    開封第一講書人閱讀 49,772評論 1 290
  • 那天缰泡,我揣著相機(jī)與錄音,去河邊找鬼代嗤。 笑死棘钞,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的干毅。 我是一名探鬼主播宜猜,決...
    沈念sama閱讀 38,921評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼硝逢!你這毒婦竟也來了姨拥?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,688評論 0 266
  • 序言:老撾萬榮一對情侶失蹤趴捅,失蹤者是張志新(化名)和其女友劉穎垫毙,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體拱绑,經(jīng)...
    沈念sama閱讀 44,130評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡综芥,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,467評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了猎拨。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片膀藐。...
    茶點故事閱讀 38,617評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡屠阻,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出额各,到底是詐尸還是另有隱情国觉,我是刑警寧澤,帶...
    沈念sama閱讀 34,276評論 4 329
  • 正文 年R本政府宣布虾啦,位于F島的核電站麻诀,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏傲醉。R本人自食惡果不足惜蝇闭,卻給世界環(huán)境...
    茶點故事閱讀 39,882評論 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望硬毕。 院中可真熱鬧呻引,春花似錦、人聲如沸吐咳。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,740評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽韭脊。三九已至童谒,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間乾蓬,已是汗流浹背惠啄。 一陣腳步聲響...
    開封第一講書人閱讀 31,967評論 1 265
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留任内,地道東北人。 一個月前我還...
    沈念sama閱讀 46,315評論 2 360
  • 正文 我出身青樓融柬,卻偏偏與公主長得像死嗦,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子粒氧,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,486評論 2 348

推薦閱讀更多精彩內(nèi)容