码迷,mamicode.com
首页 > 微信 > 详细

一步步开发微信小程序(一)

时间:2017-03-06 11:04:50      阅读:624      评论:0      收藏:0      [点我收藏+]

标签:for循环   数据   位置   hid   display   http   信息   order   position   

微信开发者工具的使用我们就不一一赘述了,下面直接看需要绘制的页面。

技术分享

思路:整个页面分为头部和内容2大模块,头部又可以分为左右2个部分,将右边的部分设置成行内样式就能让图片和文字显示在一行,右边的位置可以通过相对定位进行微调。

内容部分基本上没一个模块(cell)都是一样的,可以使用for循环创建。样式的设置思路和头部的思路基本一致。

下面是WXML:

 

技术分享

WXML中的userInfo和titleArr,imageArr,是js中已经绑定好的数据,下面是js中的demo

技术分享

 

最后来看看样式的设置部分

/*头部信息*/

.lineView{

background-color: lightgrey;

width: 100%;

height: 20rpx;

}

.header,.my-cell{

position: relative;

}

.header-right,.my-cell-right{

display: inline-block;

overflow: hidden;

margin-left: 20rpx;

line-height: 40rpx;

font-size: 30rpx;

position: absolute;

top: 50rpx;

}

.header image{

width: 120rpx;

height: 120rpx;

background-size: cover;

border-radius: 60rpx;

margin-top: 30rpx;

margin-bottom: 30rpx;

margin-left: 30rpx;

}

/*内容*/

.my-cell-right{

top: 44rpx;

}

.my-cell image{

width: 40rpx;

height: 40rpx;

margin: 40rpx 40rpx;

}

.my-cell-line{

background-color: lightgrey;

width: 700rpx;

height: 2rpx;

margin-top: 40rpx;

}

一步步开发微信小程序(一)

标签:for循环   数据   位置   hid   display   http   信息   order   position   

原文地址:http://www.cnblogs.com/darren-chen/p/6508476.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!