stack

更新时间:

基本容器,子组件排列方式为层叠排列,每个直接子组件按照先后顺序依次堆叠,覆盖前一个子组件,支持子组件,支持通用属性

样式

支持<div> 样式,支持通用样式

事件

支持通用事件

stack组件示例

基本用法
<template>
  <stack class="wrapper">
    <div class="under-box">
      <text class="under-text">under</text>
    </div>
    <div class="above-box">
      <text class="above-text">above</text>
    </div>
  </stack>
</template>

<script>
export default {}
</script>

<style>
.wrapper {
  width: 480px;
  height: 480px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.under-box {
  width: 400px;
  height: 400px;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: #6a88e6;
}
.above-box {
  width: 200px;
  height: 80px;
  background-color: #e8f3fe;
}
.under-text {
  font-size: 100px;
}
</style>
复制代码
图标图标
图标图标
图标图标
上一篇
list-item
下一篇
swiper
以上内容对您是否有帮助?
  • 毫无帮助
  • 帮助不大
  • 一般
  • 很好
  • 非常好
意见反馈