从WP主题(css)中删除动画

时间:2015-01-15 10:55:45

标签: css wordpress wordpress-theming

我正在使用首页上带动画的Wordpress模板。滚动时,动画会加载首页内容(横幅和新闻稿)。我不想删除动画,但我无法找到动画脚本隐藏在哪个CSS文件中。 anybpody能帮助我吗?

谢谢:))

http://funwithfelix.com/

1 个答案:

答案 0 :(得分:0)

在helper.js中找到

// Initializing waypoints to show/hide flowign panel above header
jQuery(document).ready(function($){
    $(window).load(function(){
        $('.site-header').waypoint(function(direction) {
            if (direction == 'down') {
                $('.panel-hidden').fadeIn();
            } else {
                $('.panel-hidden').fadeOut();               
            }
        }, {
          offset: function() {
            return -$(this).height();
          }
        });
    });
});