view

  1. <view class="a"></view>
  2. <style>
  3. //不建议使用
  4. .a:hover {}
  5. </style>
  6. //因为在移动端点击后,会一直显示
  7. //通过hover-class属性代替这个
  8. //hover-class中方多个animate会不生效

image.png

text

  1. // 这里的\n 可以实现换行
  2. <text>123 \n asd \n </text>

image.png