当前位置:   article > 正文

2021微信小程序最新迷你首页样式布局_微信迷你网页

微信迷你网页

废话不多说 说多了放屁  上代码

HTML页面

  1. <view class="container">
  2. <image class="avatar" src="/images/avatar/1.png"></image>
  3. <text class="motto">Hello, 七月</text>
  4. <view class="journey-container" bindtap="onTap" >
  5. <text class="journey" >开启小程序之旅</text>
  6. </view>
  7. </view>

css页面

  1. .container{
  2. display: flex;
  3. flex-direction:column;
  4. align-items: center;
  5. background-color:#b3d4db;
  6. }
  7. .avatar{
  8. width:200rpx;
  9. height:200rpx;
  10. margin-top:160rpx;
  11. }
  12. .motto{
  13. margin-top:100rpx;
  14. font-size:32rpx;
  15. font-weight: bold;
  16. }
  17. .journey-container{
  18. margin-top: 200rpx;
  19. border: 1px solid #405f80;
  20. width: 200rpx;
  21. height: 80rpx;
  22. border-radius: 5px;
  23. text-align:center;
  24. }
  25. .journey{
  26. font-size:
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/113888
推荐阅读