本文配套视频地址: https://v.qq.com/x/page/o0555o20xjd.htmlcss
开始前请把
ch4-1
分支中的code/
目录导入微信开发工具
这一章节中,主要介绍详情页的页面制做过程html
首先看一下咱们最终要展现的页面前端
页面结构大致分为三部分,也是最多见的布局方式:头部、中间体、尾部。最顶部的是页面 title
,也就是标题,若是是通常的页面,咱们只须要在 detail.json
中增长以下配置便可:
<br> "navigationBarTitleText": "Quora精选:为何聪明人总能保持冷静"json
但咱们制做的详情页面信息是随着文章内容一直变化的,因此须要在代码中单独处理,就不须要在 detail.json
中添加
这里,咱们先制做出:头部和尾部。中间的内容部分,会由 parse.js
解析文章数据生成。
<br>小程序
开始以前,咱们先修改 app.wxss
文件,引入须要用到的公用样式表和第三方样式微信小程序
@import "./styles/base.wxss"; @import "./lib/wxParse/wxParse.wxss"; .green{ color: #26b961; } page{ height: 100%; background-color: #f8f8f8; }
<br>微信
scroll-view
组件来包括整个页面内容<!-- detail.html --> <scroll-view scroll-y="true" enable-back-to-top="true" class="root-wrap"> </scroll-view>
scroll-view 组件,至关于咱们在常规的 div
标签上增长了滚动功能并进行封装
<br>微信开发
/* detail.css */ page { background: #fbfbfb; height: 100% } .root-wrap { height: 100% }
<br> app
<!-- detail.html --> <scroll-view scroll-y="true" enable-back-to-top="true" class="root-wrap"> <view class="wrapper"> <view class="info"> <view class="info-title">Quora精选:为何聪明人总能保持冷静</view> <view class="info-desc cf"> <text class="info-desc-author fl">哈利波特</text> <text class="info-desc-date fr">2017/06/27</text> </view> <view class="info-line under-line"></view> </view> </view> </scroll-view>
<br>xss
fl(float:left)
、 fr(float:right)
、 cf(clear:float)
三个样式都是在 base.wxss
中设置的全局样式/* detail.css */ page { background: #fbfbfb; height: 100% } .root-wrap { height: 100% } .wrapper { padding-bottom: 96rpx } .wrapper .top-img { width: 100%; height: 470rpx; vertical-align: top } .wrapper .info { padding: 0 36rpx } .wrapper .info-title { padding: 40rpx 0; line-height: 60rpx; font-size: 44rpx; font-weight: 500; color: #333 } .wrapper .info-desc { font-size: 28rpx; line-height: 30rpx; color: #c1c1c1 } .wrapper .info-desc-author { max-width: 65%; text-overflow: ellipsis; white-space: nowrap; overflow: hidden } .wrapper .info-line { margin-top: 24rpx }
<br>
页尾相似于于菜单导航功能,用户能够进入
下一篇
或返回
列表,而且当页面滚动时候,固定在底部不动
<br>
修改页面 detail.html
<!-- 增长如下内容,footbar节点与info节点平级 --> <view class="footbar"> <form> <button class="footbar-back clearBtnDefault"> <view class="icon footbar-back-icon"></view> </button> <button class="footbar-btn clearBtnDefault">下一篇</button> <button class="footbar-share clearBtnDefault"> <view class="icon footbar-share-icon"></view> </button> </form> </view>
<br>
修改样式表
/* detail.css 增长如下样式内容 */ .wrapper .footbar { position: fixed; left: 0; bottom: 0; width: 100%; height: 96rpx; line-height: 96rpx; background: #fff; font-size: 32rpx; color: #333 } .wrapper .footbar-back,.wrapper .footbar-share { position: absolute; width: 96rpx; height: 96rpx; bottom: 0; z-index: 2 } .wrapper .footbar .icon { position: absolute; width: 42rpx; height: 38rpx; top: 30rpx } .wrapper .footbar-back { left: 0 } .wrapper .footbar-back-icon { left: 30rpx; background: url(https://n1image.hjfile.cn/mh/2017/06/06/1305a8ac4dc9347b59cc8c2c667122e5.png) 0 0 no-repeat; background-size: contain } .wrapper .footbar-list { left: 0 } .wrapper .footbar-list-icon { left: 30rpx; background: url(https://n1image.hjfile.cn/mh/2017/06/09/1e630ac45547e6ab5260928e1d57a3c6.png) 0 0 no-repeat; background-size: contain } .wrapper .footbar-btn { text-align: center; margin: 0 96rpx; height: 96rpx; line-height: 96rpx } .wrapper .footbar-share { right: 0 } .wrapper .footbar-share-icon { right: 30rpx; background: url(https://n1image.hjfile.cn/mh/2017/06/09/ebc3852fb865bd19182c09ca599d8ac1.png) 0 0 no-repeat; background-size: contain } .wrapper .clearBtnDefault { margin: 0; padding: 0; background: #fff; border: 0; border-radius: 0 } .wrapper .clearBtnDefault:after { content: ''; border: none; border-radius: 0; width: 0; height: 0 }
<br> 页面尾部制做完成,下一步咱们将处理中间的文章内容部分。
完整的页面代码以下
<scroll-view scroll-y="true" enable-back-to-top="true" class="root-wrap"> <view class="wrapper"> <view class="info"> <view class="info-title">Quora精选:为何聪明人总能保持冷静</view> <view class="info-desc cf"> <text class="info-desc-author fl">哈利波特</text> <text class="info-desc-date fr">2017/06/27</text> </view> <view class="info-line under-line"></view> </view> <!-- 增长正文视图位置 --> <view class="content"> 文章正文 </view> <view class="footbar"> <form> <button class="footbar-back clearBtnDefault"> <view class="icon footbar-back-icon"></view> </button> <button class="footbar-btn clearBtnDefault">下一篇</button> <button class="footbar-share clearBtnDefault"> <view class="icon footbar-share-icon"></view> </button> </form> </view> </view> </scroll-view>
iKcamp官网:http://www.ikcamp.com
访问官网更快阅读所有免费分享课程:《iKcamp出品|全网最新|微信小程序|基于最新版1.0开发者工具之初中级培训教程分享》。 包含:文章、视频、源代码
iKcamp原创新书《移动Web前端高效开发实战》已在亚马逊、京东、当当开售。
与
“每天练口语”
小程序总榜排名第4、教育类排名第一的研发团队,面对面沟通交流。