我在本地使用带有纯 HTML、CSS 和 JS 的anime.js 制作了一些动画。现在我需要在基于 wordpress 的站点中实现这些动画。
不幸的是我得到了错误module is not defined
。它指的是anime.js 文件中的最后一行module.exports = anime;
。
我真的不太了解 Wordpress 开发,但我确实知道如何将脚本排入队列(至少我认为我知道)
这是我的functions.php文件中的代码,我在其中调用了anime.js和我的js文件,尽管我什至不知道这个错误是否与我如何将文件排入队列有关。
function load_my_scripts() {
wp_register_script('animejs', get_template_directory_uri() . "/js/anime.js", array(), '', true );
wp_enqueue_script('animejs');
wp_register_script('scriptjs', get_template_directory_uri() . "/js/script.js", array('animejs'), '', true );
wp_enqueue_script('scriptjs');
}
add_action('init', 'load_my_scripts');
出现问题的站点是这个: http: //www.provokatur.at/
我真的希望有人可以帮助我,谢谢。