我正在尝试在 wordpress 中使用 Vivus.js 脚本来为我的 svg 徽标绘图设置动画。它正在加载 js 文件,但在错误控制台中我得到: SyntaxError: Unexpected token '<' references the virus.js 文件的第一行。
这是我在 Wordpress Footer.php 中的脚本:
var elogo = new Vivus('elogo', {
type : 'delayed',
duration : 140,
start : 'autostart',
forceRender : true,
dashGap: 20
}, function() {
if (window.console) {
console.log('Animation finished. [log triggered from callback]');
}
})
一切都在 WordPress 之外工作,但是当我把它放在我的主题文件中时,它不会执行动画。