转自:https://idig8.com/2018/08/09/xiaochengxu-chuji-07/
细说下微信小程序的wxss样式文件。源码:https://github.com/limingios/wxProgram.git 中的No.2
原来在html里面都是使用px和pt,微信这边自定义的rpx的方式。
文档:https://developers.weixin.qq.com/miniprogram/dev/framework/view/wxss.html
/* pages/index/index.wxss */.txt-test{ margin-top: 800rpx;}
新建一个跟现有的文件夹内的wxss名称不一样的,一个文件名称,然后import 引入外部的wxss,就可以在wxml使用了。通过@import 的方式引入到本身要引入的wxss里面,然后
/* pages/index/out.wxss */.txt-left{ margin-left: 100rpx;}
/* pages/index/index.wxss */@import "out.wxss";.txt-test{ margin-top: 800rpx;}
//index.jsPage({ data: { motto: ‘测试下数据绑定‘, testoutcss: ‘测试外部css样式‘, userInfo: {}, hasUserInfo: false, canIUse: wx.canIUse(‘button.open-type.getUserInfo‘) }})
<!--index.wxml--><view class="container"> <text class="txt-test">{{motto}}</text> <text class="txt-left">{{testoutcss}}</text></view>
样式里面也可以通过数据绑定的方式进行显示
//index.jsPage({ data: { motto: ‘测试下数据绑定‘, testoutcss: ‘测试外部css样式‘, color:"red", userInfo: {}, hasUserInfo: false, canIUse: wx.canIUse(‘button.open-type.getUserInfo‘) }})
color绑定的方式
<!--index.wxml--><view class="container"> <text style="color:{{color}}">{{motto}}</text> <text class="txt-test">{{motto}}</text> <text class="txt-left">{{testoutcss}}</text></view>
全局样式和局部样式名称相同时,按照局部的样式进行
/**app.wxss**/.container { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: space-between; padding: 200rpx 0; box-sizing: border-box;} #txt-right{ margin-right: 100rpx; color: yellow;}
/* pages/index/index.wxss */@import "out.wxss";.txt-test{ margin-top: 800rpx;}#txt-right{ margin-right: 300rpx; color: black;}
<!--index.wxml--><view class="container"> <text id="txt-right">{{globalcss}}</text> <text style="color:{{color}}">{{motto}}</text> <text class="txt-test">{{motto}}</text> <text class="txt-left">{{testoutcss}}</text></view>
PS:样式这块比较依赖html中的css,明白如何引用,关联关系,style的方式自定义样式。