我正在尝试按this guide创建首次用户指南。我按照指南安装了EnjoyHint,但是我收到以下错误消息:
Failed to load resource: net::ERR_FILE_NOT_FOUND casino_hand-webfont.woff
Failed to load resource: net::ERR_FILE_NOT_FOUND casino_hand-webfont.ttf
我将样式表和javascript导入为:
<link href="bower_components/enjoyhint/enjoyhint.css" rel="stylesheet"/>
<script src="bower_components/enjoyhint/enjoyhint.min.js"></script>
他们在正确的文件夹中,但我不确定为什么我收到上面的消息。
我的JavaScript代码:
var enjoyhint_instance = new EnjoyHint({});
var enjoyhint_script_steps = [{
'click #tab_1' : 'This button allows you to switch between the search results'
}, {
}];
enjoyhint_instance.set(enjoyhint_script_steps);
enjoyhint_instance.run();
有什么想法吗?谢谢!