transitionプロパティは、transition効果(時間的変化)をまとめて指定する際に使用します。
transitionプロパティでは、
transition-property、
transition-duration、
transition-timing-function、
transition-delay の各プロパティの値を、まとめて指定することができます。
このプロパティでは、値を指定する順序が重要となります。
時間として指定される最初の値はtransition-durationに割り当てられ、
時間として指定される二番目の値はtransition-delayに割り当てられます。
複数の種類のCSSプロパティに対してtransition効果を適用する場合には、値のセットをカンマ( , )で区切って指定します。
div.sample {
background-color:blue; width:200px; height:50px;
transition: background-color 1s linear 0 , width 1s linear 0 , height 1s linear 0;
}
div.sample:hover {
background-color:aqua; width:300px; height:100px;
}
<html>
<head>
<link rel=”stylesheet” href=”sample.css” type=”text/css”>
</head>
<body>
<div class=”sample”>transitionの使用例</div>
</body>
</html>
div.prefix_sample {
background-color:blue; width:200px; height:50px;
-moz-transition: background-color 1s linear 0 , width 1s linear 0 , height 1s linear 0;
-webkit-transition: background-color 1s linear 0 , width 1s linear 0 , height 1s linear 0;
-o-transition: background-color 1s linear 0 , width 1s linear 0 , height 1s linear 0;
-ms-transition: background-color 1s linear 0 , width 1s linear 0 , height 1s linear 0;
}
div.prefix_sample:hover {
background-color:aqua; width:300px; height:100px;
}
<html>
<head>
<link rel=”stylesheet” href=”sample.css” type=”text/css”>
</head>
<body>
<div class=”prefix_sample”>transitionの使用例</div>
</body>
</html>