swiper.vue 1.68 KB
<template>
  <div v-if="list.length" class="swiper">
    <div class="swiper-item swiper-item-left">
      <LayoutLink :href="list[0].url" class="img-link">
        <ImageFormat :lazy="false" class="item-imge" :src="list[0].src" :width="310" :height="402"></ImageFormat>
      </LayoutLink>
    </div>
    <div class="swiper-item swiper-item-right">
      <LayoutLink :href="list[1].url" class="img-link">
        <ImageFormat :lazy="false" class="item-imge" :src="list[1].src" :width="380" :height="196"></ImageFormat>
      </LayoutLink>
      <LayoutLink :href="list[2].url" class="img-link">
        <ImageFormat :lazy="false" class="item-imge" :src="list[2].src" :width="380" :height="196"></ImageFormat>
      </LayoutLink>
    </div>
  </div>
</template>

<script>
export default {
  name: 'swiper',
  props: {
    list: {
      type: Array,
      default: []
    },
  }
};
</script>

<style lang="scss" scoped>
.swiper {
  display: flex;
  align-content: stretch;
  justify-content: space-between;
  height: 402px;
  margin-left: 8px;
  margin-right: 8px;

  .swiper-item {
    position: relative;

    &:after {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      z-index: -2;
      border-radius: 8px;
      box-shadow: 0 0 30px #dcdcdc;
      bottom: 0;
    }
  }

  .swiper-item-left {
    width: 44%;
  }

  .swiper-item-right {
    width: 54.5%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    .img-link {
      height: 196px;
    }
  }

  .img-link {
    max-height: 100%;
    display: block;
    border-radius: 8px;
    overflow: hidden;

    img {
      width: 100%;
      height: 100%;
      display: block;
    }
  }
}
</style>