开始

登陆后的样式
image.png

未登陆的先用template包裹起来
image.png

image.png

  1. islogin:false

image.png

登陆场景


image.png
分为3部分,1是头像 2是文字, 3是最右侧的箭头图标。
image.png

  1. <!-- 登陆 -->
  2. <view class="home-info">
  3. <image src="../../static/demo/userpic/11.jpg"
  4. mode="widthFix" lazy-load="true"></image>
  5. <view class="u-f1"></view>
  6. <view class="icon iconfont icon-jinru"></view>
  7. </view>

image.png

  1. <view class="u-f1">
  2. <view>昵称</view>
  3. <view>总访客 0 今日 0</view>
  4. </view>

样式

最外层 内边距
image.png

头像样式。首先让他flex布局不要被压缩。然后设置头像的宽度和高度。
image.png

  1. .home-info>image{
  2. flex-shrink: 0;
  3. width: 100upx;
  4. height: 100upx;
  5. border-radius: 100%;
  6. }

和右边的文字增加点间距
image.png
最右侧的箭头图标 加点宽度。
image.png

  1. /* 最右侧的箭头 */
  2. .home-info>view:last-of-type{
  3. height: 100%;
  4. width: 70upx;
  5. }

昵称和总访客
image.png

  1. /* 昵称 */
  2. .home-info>view:first-of-type>view:first-child{
  3. font-size: 32upx;
  4. }
  5. /* 总访客 */
  6. .home-info>view:first-of-type>view:last-child{
  7. color: #BBBBBB;
  8. }

image.png
最外层边距,左右是40upx
image.png

  1. .home-info{
  2. padding: 40upx;
  3. }

宽度去掉。右侧的箭头宽度去掉。
image.png

image.png

本节代码

home.vue

  1. <template>
  2. <view>
  3. <template v-if="islogin">
  4. <!-- 未登陆 -->
  5. <view class="u-f-ajc">登陆仿糗百,体验更多功能</view>
  6. <!-- 第三方登陆 -->
  7. <view class="other-login u-f-ac">
  8. <view class="u-f-ajc u-f1"><view class="icon iconfont icon-weixin u-f-ajc"></view></view>
  9. <view class="u-f-ajc u-f1"><view class="icon iconfont icon-xinlangweibo u-f-ajc"></view></view>
  10. <view class="u-f-ajc u-f1"><view class="icon iconfont icon-QQ u-f-ajc"></view></view>
  11. </view>
  12. <!-- 账号密码登陆 -->
  13. <view class="u-f-ajc">
  14. 账号密码登陆<view class="icon iconfont icon-jinru"></view>
  15. </view>
  16. <view class="home-data u-f-ac">
  17. <view class="u-f1 u-f-ajc u-f-column"><view>0</view>糗事</view>
  18. <view class="u-f1 u-f-ajc u-f-column"><view>0</view>动态</view>
  19. <view class="u-f1 u-f-ajc u-f-column"><view>0</view>评论</view>
  20. <view class="u-f1 u-f-ajc u-f-column"><view>0</view>收藏</view>
  21. </view>
  22. <!-- 广告位 -->
  23. <view class="home-adv u-f-ajc">
  24. <image src="../../static/demo/demo20.jpg"
  25. mode="widthFix"
  26. lazy-load="true"></image>
  27. </view>
  28. <!-- 功能列表 -->
  29. <view class="home-list">
  30. <view class="home-list-item u-f-ac u-f-jsb" hover-class="home-list-hover">
  31. <view class="u-f-ac">
  32. <view class="icon iconfont icon-liulan"></view>
  33. 浏览历史
  34. </view>
  35. <view class="icon iconfont icon-jinru"></view>
  36. </view>
  37. </view>
  38. </template>
  39. <!-- 登陆 -->
  40. <view class="home-info u-f-ac">
  41. <image src="../../static/demo/userpic/11.jpg"
  42. mode="widthFix" lazy-load="true"></image>
  43. <view class="u-f1">
  44. <view>昵称</view>
  45. <view>总访客 0 今日 0</view>
  46. </view>
  47. <view class="icon iconfont icon-jinru"></view>
  48. </view>
  49. </view>
  50. </template>
  51. <script>
  52. export default {
  53. data() {
  54. return {
  55. islogin:false
  56. }
  57. },
  58. onNavigationBarButtonTap(e) {
  59. if(e.index==0) {
  60. console.log('跳转设置页');
  61. }
  62. },
  63. methods: {
  64. }
  65. }
  66. </script>
  67. <style>
  68. /* 登陆后的 */
  69. .home-info{
  70. padding: 40upx;
  71. }
  72. .home-info>image{
  73. flex-shrink: 0;
  74. width: 100upx;
  75. height: 100upx;
  76. border-radius: 100%;
  77. margin-right: 15upx;
  78. }
  79. /* 最右侧的箭头 */
  80. .home-info>view:last-of-type{
  81. height: 100%;
  82. /* width: 70upx; */
  83. }
  84. /* 昵称 */
  85. .home-info>view:first-of-type>view:first-child{
  86. font-size: 32upx;
  87. }
  88. /* 总访客 */
  89. .home-info>view:first-of-type>view:last-child{
  90. color: #BBBBBB;
  91. }
  92. .home-list{
  93. padding: 20upx;
  94. }
  95. .home-list-item{
  96. padding: 20upx;
  97. border-top: 1upx solid #EEEEEE;
  98. border-bottom: 1upx solid #EEEEEE;
  99. }
  100. .home-list-item>view:first-child{
  101. color: #333333;
  102. }
  103. /* 左侧图标距离文字的间距 */
  104. .home-list-item>view:first-child>view{
  105. margin-right: 10upx;
  106. }
  107. /* 右边箭头 */
  108. .home-list-item>view:last-child{
  109. color: #CCCCCC;
  110. }
  111. .home-list-hover{
  112. background: #f4f4f4;
  113. }
  114. .other-login{
  115. padding:20upx 80upx;
  116. }
  117. .other-login>view>view{
  118. width: 100upx;
  119. height: 100upx;
  120. /* border: 1px solid; */
  121. border-radius: 100%;
  122. font-size: 55upx;
  123. color: #FFFFFF;
  124. }
  125. .other-login .icon-QQ{
  126. background: #2CAEFC;
  127. }
  128. .other-login .icon-weixin{
  129. background: #2BD19B;
  130. }
  131. .other-login .icon-xinlangweibo{
  132. background: #FC7729;
  133. }
  134. .home-data{
  135. padding: 20upx 40upx;
  136. }
  137. .home-data>view{
  138. color: #989898;
  139. }
  140. .home-data>view>view{
  141. font-size: 32upx;
  142. color: #333333;
  143. }
  144. .home-adv{
  145. padding: 20upx;
  146. }
  147. .home-adv>image{
  148. border-radius: 20upx;
  149. height: 150upx;
  150. }
  151. </style>

结束