当前位置:   article > 正文

抽屉动画实现_vue3炫酷抽屉

vue3炫酷抽屉

在这里插入图片描述
此版本是用vue写的,自行调用可以将less写法转化成css写法

<template>
  <div class="productWrap">
    <h2>产品功能</h2>
    <ul>
      <li>
        <h3>全景企业画像</h3>
        <p>CORPORATE PORTRAIT</p>
        <dl>
          <dt>全景企业画像</dt>
          <dd>企业数据</dd>
          <dd>企业舆情</dd>
          <dd>企业诚信</dd>
          <dd>企业关系</dd>
          <dd>企业图谱</dd>
        </dl>
      </li>
      <li>
        <h3>详尽债券资料</h3>
        <p>BOND INFORMATION</p>
        <dl>
          <dt>详尽债券资料</dt>
          <dd>债权担保</dd>
          <dd>债券数据</dd>
          <dd>债券风控</dd>
          <dd>地方债与城投</dd>
        </dl>
      </li>
    </ul>
  </div>
</template>

<script setup lang="ts">
import { onMounted, ref } from "vue";
</script>

<style lang="less" scoped>
ul,li{
  list-style:none;
}
.productWrap{
  padding: 60px 0 80px;
  background: #f4f4f4;
  position: relative;

  h2 {
    font-size: 36px;
    font-weight: 500;
    text-align: center;
    color: #000;
    line-height: 50px;
    position: relative;
    margin: 0 0 40px;
    letter-spacing: 2px;
  }

  ul {
    overflow: hidden;
    width: 526px;
    height: 448px;
    display: flex;
    margin: 0 auto;
    li {
      width: 232px;
      height: 430px;
      position: relative;
      margin: 0 10px 0 0;
      background-repeat: no-repeat;
      background-size: 100% 100%;
      padding-top: 258px;
      text-align: center;

      // ${Background}

      &:last-of-type {
        margin-right: 0;
      }

      h3 {
        font-size: 21px;
        font-family: PingFangSC, PingFangSC-Semibold;
        font-weight: 600;
        color: #111;
        line-height: 29px;
        letter-spacing: 1px;
        margin: 0 0 8px;
      }

      p {
        font-size: 12px;
        font-family: PingFangSC, PingFangSC-Light;
        font-weight: 300;
        text-align: center;
        color: rgba(17, 17, 17, 0.4);
        line-height: 17px;
      }

      dl {
        position: absolute;
        height: 100%;
        top: 428px;
        left: 0;
        right: 0;
        transition: 0.3s all;
        text-align: center;
        background: rgba(19, 114, 221, 0.85);
        color: #fff;
        padding: 73px 0 0;

        dt {
          font-size: 21px;
          line-height: 29px;
          letter-spacing: 1px;
          position: relative;
          margin: 0 0 36px;

          &:after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 24px;
            height: 3px;
            background: #fff;
            border-radius: 3px;
          }
        }

        dd {
          margin: 0 0 12px;
          font-size: 16px;
          line-height: 24px;
        }
      }

      &:hover {
        h3,
        p {
          display: none;
        }

        dl {
          top: 0;
        }
      }
    }
  }
}
</style>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/article/detail/43223
推荐阅读
相关标签
  

闽ICP备14008679号