如何手动将事件添加到类似时间轴小部件
我可以使用 json 文件使用明喻时间线...
tl.loadJSON("/files/trial.js", function(json, url) { eventSource.loadJSON(json, url); });
我想将其连接到 json 输出。
tl.loadJSON("http://mywebsite.com/events/json/", function(json, url) { eventSource.loadJSON(json, url); });
我也无法手动添加事件。
我很感激任何帮助。
I am able to use simile timeline with json file using...
tl.loadJSON("/files/trial.js", function(json, url) { eventSource.loadJSON(json, url); });
I would like to connect it json output.
tl.loadJSON("http://mywebsite.com/events/json/", function(json, url) { eventSource.loadJSON(json, url); });
I am also having trouble adding events manually.
I appreciate any help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这应该是添加事件的完整工作示例:
This should be a complete working example of adding an event: