ホームページ > 記事 > ウェブフロントエンド > WeChat ミニ プログラムで進行状況コンポーネントを使用する方法
この記事では主にWeChatアプレットの進捗コンポーネントの使用方法を詳しく紹介しますので、興味のある方は参考にしてください
この記事は参考のためにWeChatアプレットの進捗コンポーネントの使用方法を共有します。ご参考までに、具体的な内容は以下の通りです
Rendering
WXML
<view class="tui-content"> <view class="tui-menu-list"> <text>show-info在进度条右侧显示百分比</text> <progress percent="50" show-info /> </view> <view class="tui-menu-list"> <text>stroke-width进度条线的宽度,单位px</text> <progress percent="50" stroke-width="12" show-info/> </view> <view class="tui-menu-list"> <text>color进度条颜色</text> <progress percent="50" color="red" show-info/> </view> <view class="tui-menu-list"> <text>active进度条从左往右的动画</text> <progress percent="50" active show-info/> </view> <view class="tui-menu-list"> <text>backgroundColor未选择的进度条的颜色</text> <progress percent="50" backgroundColor="blue" active show-info/> </view> <view class="tui-menu-list"> <text>动态设置进度条进度</text> <progress percent="{{index}}" show-info/> </view> <view class="tui-tabbar-content"> <view class="tui-tabbar-group"> <text data-id="10" bindtap="changeTabbar" class="tui-tabbar-cell {{index == 10 ? 'tui-active' : ''}}">10%</text> <text data-id="30" bindtap="changeTabbar" class="tui-tabbar-cell {{index == 30 ? 'tui-active' : ''}}">30%</text> <text data-id="50" bindtap="changeTabbar" class="tui-tabbar-cell {{index == 50 ? 'tui-active' : ''}}">50%</text> <text data-id="70" bindtap="changeTabbar" class="tui-tabbar-cell {{index == 70 ? 'tui-active' : ''}}">70%</text> <text data-id="90" bindtap="changeTabbar" class="tui-tabbar-cell {{index == 90 ? 'tui-active' : ''}}">90%</text> </view> </view> </view>
JS
Page({ data: { index: 10 }, changeTabbar(e){ this.setData({ index: e.currentTarget.dataset.id}) } })
progress属性
percent:初期化の割合
show-info:プログレスバーを表示するかどうかプログレスバーの右側のパーセンテージ
ストローク幅: プログレスバーの幅、単位 px、デフォルトは 6 です
color: プログレスバーの色
activeColor: 選択されたプログレスバーの色
backgroundColor: 選択されていないプログレスバーの色
active : 左から右への進行状況バー アニメーション
アクティブモード: 逆方向: アニメーションは最初から再生されます; 前方: アニメーションは最後の終了点から再生されます
上記は、皆さんのために私がまとめたものです。これからのみんな。
関連記事:
以上がWeChat ミニ プログラムで進行状況コンポーネントを使用する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。