样式一:
借鉴网址:++https://www.vue3js.cn/++
展示:
css
css
<div class='aa'></div>
.aa {
width: 300px;
height: 200px;
background: #fbfbfb !important;
border: 1px solid #f1f1f1;
transition: all 0.2s ease-in-out;
}
.aa:hover {
width: 300px;
height: 200px;
background: #fbfbfb !important;
box-shadow: 0 18px 32px -18px #000 !important;
transform: translateY(-3px);
border: 1px solid #f1f1f1;
}
--- 持续更新---