当前位置:   article > 正文

微信小程序通过css实现底部边大圆弧效果_超大型圆弧css

超大型圆弧css

1.场景

需在个人中心添加下边框为圆弧

2.在wxml中定义一个class节点

  1. <view>
  2. <view bindtap="bindViewTap" class="userinfo">
  3. <image class="userinfo-avatar" src="{{userInfo.avatarUrl}}" background-size="cover"></image>
  4. <text class="userinfo-nickname">{{userInfo.nickName}}</text>
  5. </view>
  6. </view>

3.在wxss中添加css代码

  1. .userinfo {
  2. display: relative;
  3. flex-direction: column;
  4. align-items: center;
  5. height: 300rpx;
  6. }
  7. .userinfo::after{
  8. content: '';
  9. width: 120%;
  10. height: 300rpx;
  11. position: absolute;
  12. z-index: -1;
  13. left: -10%;
  14. top: 0;
  15. border-radius: 0 0 50% 50%;
  16. background: linear-gradient(160deg,#84c4ef, #84c4ef);
  17. }

4.最终效果

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/117039?site
推荐阅读
相关标签