微信小程序--用户头像做成圆形

–wxml–

<view class="logo">
   <open-data type="userAvatarUrl" class="userinfo" id="userinfo"></open-data>
</view>

–wxss–

#userinfo{
  width: 185rpx;
  height:185rpx;
  border-radius:50%;
  display: flex;
  overflow:hidden;
  text-align: center;
}

猜你喜欢

转载自blog.csdn.net/weixin_44531304/article/details/88991562