我在将jQuery与WordPress一起使用时遇到了此错误,并按照此答案解决了这个问题。但是,错误仍然存在。
Error : Uncaught TypeError: $el.appear is not a function
at PluginAnimate.build (theme.js:66)
at PluginAnimate.initialize (theme.js:38)
at PluginAnimate (theme.js:18)
<script>
jQuery.noConflict();
</script>
主题中的几行.js有错误
$(window).afterResize(function() {
$headerContainer.css('min-height', $header.height());
});
$el.appear(function() {
delay = ($el.attr('data-appear-animation-delay') ?
$el.attr('data-appear-animation-delay') : self.options.delay);
if (delay > 1) {
$el.css('animation-delay', delay + 'ms');
}
$el.addClass($el.attr('data-appear-animation'));
setTimeout(function() {
$el.addClass('appear-animation-visible');
}, delay);
},
代码继续....
关于我做错了什么的任何想法?
正如@Thiatt所建议的,我错过了包含jQuery Appear插件。