私信  •  关注

Matej J

Matej J 最近创建的主题
Matej J 最近回复了
5 年前
回复了 Matej J 创建的主题 » 使用css和jquery平滑过渡

你需要包括 transition 标题样式中的属性:

#headerTitle {
font-size: 2em;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}