

プロパティについて
#
#
#
複数のプロパティの遷移効果を指定する
“transition-property”プロパティで複数のプロパティの遷移効果が指定されている場合、値を“,(コンマ)”で区切って記述することでそれぞれの遷移の所要時間を指定することができます。値の順番は“transition-property”プロパティで指定した値の順番に対応します。
div {
transition-duration: 〚1個目のプロパティの所要時間〛,〚2個目のプロパティの所要時間〛,〚3個目のプロパティの所要時間〛,...;
transition-property: 〚1個目のプロパティ〛,〚2個目のプロパティ〛,〚3個目のプロパティ〛,...;
}
#
使用例
#
遷移効果の所要時間を指定する
.sample-box:hover {
transform: scale(1.5);
background-color: #e95295;
transition-duration: 1s;
}
hover!
.sample-box:hover {
transform: scale(1.5);
background-color: #e95295;
transition-duration: 5s;
}
hover!
.sample-box:hover {
transform: scale(1.5);
background-color: #e95295;
transition-duration: 10s;
}
hover!
#
#