CSS Div鼠标hover,卡片上浮效果

时间:2025-04-05 19:00:32
.item { width: 100px; height: 100px; background: #222; -webkit-transition: all 250ms cubic-bezier(0.02, 0.01, 0.47, 1); transition: all 250ms cubic-bezier(0.02, 0.01, 0.47, 1); } .item:hover { // box-shadow: 0 16px 32px 0 rgba(48, 55, 66, 0.15); transform: translate(0, -3px); transition-delay: 0s !important; }