美文网首页微信小程序 MG名冠小程序
微信小程序实现常见的user效果

微信小程序实现常见的user效果

作者: 王月_92f2 | 来源:发表于2018-07-27 16:13 被阅读23次

发现众多的小程序,在个人主页方面都使用了这个效果:

用户个人页面

为了便于以后的使用,所以把这个效果记录下来,以后直接复制粘贴本篇的代码。

wxml

<view class='circle'>
    <view class='userAvatar'>
      <open-data type="userAvatarUrl" ></open-data>
    </view>
  </view>

代码说明:
open-data没有办法直接给一个class然后控制类名,但是可以通过控制外部盒子达到控制它本身的大小以及形状的目的。

wxss

.circle{
  width:930rpx;
  height:930rpx;
  border-radius:465rpx;
  background-color:#2ca6cb;
  margin-top:-666rpx;
  margin-left:-90rpx;
  display:flex;
  align-items:center;
  flex-direction:column-reverse;
}
.userAvatar{
  width:80px;
  height:80px;
  border-radius:40px;
  margin-bottom:-30px;
  overflow: hidden;
}

说明:通过flex布局控制头像的位置。

相关文章

网友评论

本文标题:微信小程序实现常见的user效果

本文链接:https://www.haomeiwen.com/subject/splgmftx.html