Py学习  »  Matej J  »  全部回复
回复总数  1
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;
}