大狐狸
【教程】追格知识付费小程序"文章分类"左右图改大图教程
追格知识付费小程序分类页我们可以通过仅修改css改变显示效果,下图为原始界面。
1、打开追格知识付费小程序的category.vue在页面中找到css
.jiangqie-topic-type {
width: 49%;
margin-right: 2%;
position: relative;
}
2、然后按以下代码进行修改,修改样式如下:
//注释的是原始css,便于大家参考未做删除,具体调整后的css代码如下:
.jiangqie-topic-type {
// width: 49%;
// margin-right: 2%;
width: 100%;
position: relative;
}
.jiangqie-topic-type:nth-child(2n) {
margin-right: 0;
}
.jiangqie-topic-type image {
width: 100%;
// height: 320rpx;
height: 240rpx;
border-radius: $Q-radio;
}
.jiangqie-topic-type view {
// position: absolute;
// height: 140rpx;
// line-height: 180rpx;
height: 100rpx;
line-height: 60rpx;
// color: $Q-gradual-text-color;
text-align: center;
width: 100%;
bottom: 16rpx;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
// border-radius: 0 0 $Q-radio $Q-radio;
// background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
}
对比原始css大家可以更好的了解如何基于现有结构,通过调整css来修改UI,可以结合自己项目情况,将原始界面和修改后的界面混合,改成其他的展示形式。
相关推荐:
追格知识付费小程序发现页分类tab选中状态修改教程
3人点赞
0人收藏
暂无评论,抢个沙发...