區別:1、 wxss不能直接透過css3中的background-image屬性來設定顯示的背景圖片;2、小程式中的文件流中不存在window、document對象,在使用css3屬性position時需注意為基礎節點設定fixed屬性值。
wxss和css3的差異
例如我在wxss中書寫如下
background-image: url(imageB.png);
控制台列印:
pages/index/index.wxss 中的本地资源图片无法通过 WXSS 获取,可以使用网络图片,或者 base64,或者使用<image/>标签。
使用时应注意,为基础节点container设置fixed属性,否则position=absolute不会生效 /**app.wxss**/ .container { height: 100%; width: 100%; display: flex; flex-direction: column; align-items: center; justify-content: space-between; padding: 200rpx 0; box-sizing: border-box; position: fixed; }
<view id='imageBtn' style='display:{{imageBtn_display?"inherit":"none"}}' catchtouchmove='touchRotateAction'></view>
3.其他
支援動畫 @keyframes,似乎不能加廠商前綴。
支持過渡 transition。
更多程式相關知識,請造訪:程式設計入門! !
以上是wxss和css3的差別是什麼的詳細內容。更多資訊請關注PHP中文網其他相關文章!