此问题在此处已有答案:
Want a Smooth Animation When Resizing DIV - JavaScript(5个答案)
4天前关闭。
有人能告诉我应该使用哪个标签来配置css中的转换速度吗?
#test2{
width: 300px;
height: 300px;
background: red;
}
#test2:hover{
width: 400px;
background: blue;
}
我代码如下所示
此问题在此处已有答案:
Want a Smooth Animation When Resizing DIV - JavaScript(5个答案)
4天前关闭。
有人能告诉我应该使用哪个标签来配置css中的转换速度吗?
#test2{
width: 300px;
height: 300px;
background: red;
}
#test2:hover{
width: 400px;
background: blue;
}
我代码如下所示
1条答案
按热度按时间bprjcwpo1#
您需要
transition-duration
来控制过渡速度。或者使用以下速记法一次性设置它们:
第一次