📅  最后修改于: 2023-12-03 15:30:09.605000             🧑  作者: Mango
CSS 的 transition-property 属性用于指定应该过渡动画的 CSS 属性。当属性值发生变化时,可以实现过渡效果。
transition-property: none|all|property;
div {
width: 100px;
height: 100px;
background-color: #abc;
transition-property: background-color;
transition-duration: 1s;
}
div:hover {
background-color: #def;
}
在上面的示例中,当鼠标悬停在 div 上时,背景颜色将在 1 秒钟内从 #abc 过渡到 #def。
下面是常见的 CSS 属性,它们都可以通过 transition-property 实现过渡动画效果: