理解小程序cover-view

cover-view

1、cover-view是覆盖在原生组件之上的文本视图,只支持嵌套cover-view、cover-image
2、cover-view不支持text-decoration属性设置
3、cover-view设置文本内容换行 white-space: normal;(注意flex布局时可能不起效果哦

  1. padding没有背景色 (写固定宽hack)
  2. border不生效 (写cover-view hack)
  3. cover-view 默认Css
  4. cover-image不支持gif (用图片+定时器模拟gif)
cover-view {
  display:block;
  line-height:1.2;
  overflow:hidden;
  white-space:nowrap;
  pointer-events:auto;
} 

安座机无法覆盖

被覆盖原因是video加载的比cover-view慢,所以我给cover-view做了一个延时显示,暂且是这样解决
注意加载顺序,cover-view应晚于被覆盖组件加载
https://www.jianshu.com/p/3c255f5c94f9

docs Q/A

  1. tip: aria-role仅可设置为button,读屏模式下才可以点击,并朗读出“按钮”;为空时可以聚焦,但不可点击
  2. tip: 基础库 2.2.4 起支持 touch 相关事件,也可使用 hover-class 设置点击态
  3. tip: 基础库 2.1.0 起支持设置 scale rotate 的 css 样式,包括 transition 动画
  4. tip: 基础库 1.9.90 起 cover-view 支持 overflow: scroll,但不支持动态更新 overflow
  5. tip: 基础库 1.9.90 起最外层 cover-view 支持 position: fixed
  6. tip: 基础库 1.9.0 起支持插在 view 等标签下。在此之前只可嵌套在原生组件mapvideocanvascamera内,避免嵌套在其他组件内。
  7. tip: 基础库 1.6.0 起支持css transition动画,transition-property只支持transform (translateX, translateY)opacity
  8. tip: 基础库 1.6.0 起支持css opacity。
  9. tip: 事件模型遵循冒泡模型,但不会冒泡到原生组件。
  10. tip: 文本建议都套上cover-view标签,避免排版错误。
  11. tip: 只支持基本的定位、布局、文本样式。不支持设置单边的borderbackground-imageshadowoverflow: visible等。
  12. tip: 建议子节点不要溢出父节点
  13. tip: 默认设置的样式有:white-space: nowrap; line-height: 1.2; display: block;

你可能感兴趣的:(理解小程序cover-view)