transition (CSS 3)
2010年2月5日 | CSS | 1 Comment |
transition プロパティで変化させるプロパティや時間、タイミングを指定します。
transition: [プロパティ] [時間] [タイミング]
例
.Test a {
color: #0000FF;
transition: color 1s ease-in-out;
}
.Test a:hover {
color: #FF0000;
}
transition プロパティで変化させるプロパティや時間、タイミングを指定します。
transition: [プロパティ] [時間] [タイミング]
.Test a {
color: #0000FF;
transition: color 1s ease-in-out;
}
.Test a:hover {
color: #FF0000;
}