微信小程式個人中心的列表控制元件實現程式碼
阿新 • • 發佈:2020-04-27
個人中心的列表控制元件
首先來看效果圖
wxml
<view class="list-item"> <image class="item-image" src="../images/fuwu.png"></image> <text class="item-text">我的收藏</text> <image class="image-jiantou" src="../images/jiantou.png"></image> </view> <view class="line"></view>
wxss
.list-item { display: flex; flex-direction: row; align-items: center; width: 100%; height: 80rpx; margin-top: 10rpx; position: relative; /*父元素位置要設定為相對*/ } .item-image { width: 50rpx; height: 50rpx; margin: 20rpx; } .item-text { color: gray; font-size: 35rpx; margin-left: 20rpx; } .image-jiantou { width: 20rpx; height: 35rpx; position: absolute; /* 要約束所在位置的子元素的位置要設定成絕對 */ right: 0; /* 靠右調節 */ margin-right: 35rpx } .line { width: 100%; height: 3rpx; background: lightgray; margin-left: 90rpx; }
到此這篇關於微信小程式個人中心的列表控制元件實現程式碼的文章就介紹到這了,更多相關微信小程式個人中心內容請搜尋我們以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援我們!