css3过渡运用(特定标签,特定div块,特定属性。。。)
div{
width: 100px;
height: 30px;
line-height: 30px;/* 文本垂直居中 */
border-radius: 5px;/* 圆角边框 */
color: #000;/* 文字的颜色(初始状态) */
background-color: silver;/* 背景的颜色(初始状态) */
transition: all 1s linear;/* 所有子属性都写在transition属性里面,针对所有的属性all,过渡时间一秒钟,过渡方式是匀速的变化。 */
}
div:hover{
color: white;/* 文字颜色变化(终止状态) */
background-color: red;/* 背景颜色变化(终止状态)一秒钟的时间从初始状态过渡到终止状态 */
}
.right{
width: 100px;
height: 30px;
line-height: 30px;/* 文本垂直居中 */
border-radius: 5px;/* 圆角边框 */
color: #000;/* 文字的颜色(初始状态) */
background-color: silver;/* 背景的颜色(初始状态) */
transition: all 1s linear;/* 所有子属性都写在transition属性里面,针对所有的属性all,过渡时间一秒钟,过渡方式是匀速的变化。 */
}
.right:hover{
color: white;/* 文字颜色变化(终止状态) */
background-color: red;/* 背景颜色变化(终止状态)一秒钟的时间从初始状态过渡到终止状态 */
}
dddd