CSS
.card{
-webkit-transition: all .3s;
transition: all .3s;
&:hover{
-webkit-box-shadow: 0 6px 6px -6px #777;
-moz-box-shadow: 0 6px 6px -6px #777;
box-shadow: 0 6px 6px -6px #777;
}
}
transition: all .3s;
は全ての要素について0.3秒間のアニメーションを行なうという指示。
transition: box-shadow .3s;
にすればbox-shadow
にだけアニメーションがかかり、
hover
の際にwidth
やheight
を変更してもアニメーションはかからない。