(1)贝塞尔曲线
transition: transform 1000ms cubic-bezier(0.7, 0, 0.3, 1) 0ms;
(2)阴影
box-shadow: 0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12)
(3)阴影
.hoverable {
-webkit-transition: -webkit-box-shadow .25s cubic-bezier(.4,0,.2,1);
transition: -webkit-box-shadow .25s cubic-bezier(.4,0,.2,1);
transition: box-shadow .25s cubic-bezier(.4,0,.2,1),-webkit-box-shadow .25s cubic-bezier(.4,0,.2,1);
will-change: box-shadow;
}
.hoveerable:hover{
box-shadow: 0 5px 5px -3px rgb(0 0 0 / 20%), 0 8px 10px 1px rgb(0 0 0 / 14%), 0 3px 14px 2px rgb(0 0 0 / 12%);
}