wordpress sydney主题缩小滚动时的标题

时间:2017-04-22 21:36:08

标签: javascript jquery css3 wordpress-theming

我试图在滚动后缩小标题。我正在研究儿童主题。

以下是标题在页面顶部的显示方式的屏幕截图 enter image description here

这是向下滚动一下

的样子

enter image description here

这就是我希望它在滚动时的看法

enter image description here

我将此css添加到子主题中以使徽标更大:

.site-logo{
    max-height:200px;
 }

我希望滚动时max-height缩小到100px。我不知道该怎么做。请帮忙。

1 个答案:

答案 0 :(得分:0)

我添加了这个css,它运行得很好。

 .site-logo {
   -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
 .float-header .site-logo {
    max-height: 100px;
  }

我从主题支持页面上发布的一个问题找到了我的问题的解决方案。