TimelineJS图标在哪里?

时间:2015-11-24 12:15:26

标签: javascript css icons timeline.js

我正在编写一个Web应用程序,它将显示来自DBPedia的数据。网站上会有一个时间表(TimelineJS)。我决定下载CSSJS的最新bootstraptimelinejs个文件。当我去创建的网站时,它仍然缺少时间轴的一些图标。我的控制台记录:

GET http://localhost:5000/static/css/icons/tl-icons.woff [HTTP/1.0 404 NOT FOUND 3ms]
NetworkError: A network error occurred. <unknown>
downloadable font: download failed (font-family: "tl-icons" style:normal weight:normal stretch:normal src index:2): status=2147746065 source: http://localhost:5000/static/css/icons/tl-icons.woff timeline.css:27:7175

对我而言,似乎timelinejs缺少图标,它试图在错误的位置找到它,但在我的应用程序目录中也不存在。我不知道为什么有人会把css文件放到与img文件夹相同的目录中,但看起来,这就是timelinejs错误地假定的。我找不到任何设置图像路径的选项,也找不到要下载的图标。

在我切换到下载的bootssrap和timelinejs的css和js版本之前,在网站上呈现没有问题的图标。由于网络延迟,我想继续使用本地css和js文件。

我无法在timelinejs网站上找到下载链接,也找不到他们的文档页面:

TimelineJS Documentation

Timeline FAQ

这是应用程序的静态文件夹的结构和内容:

app/static/
app/static/css
app/static/css/general.css
app/static/css/bootstrap.min.css
app/static/css/bootstrap-theme.min.css
app/static/css/timeline.css
app/static/json
app/static/json/minimal_example.json
app/static/fonts
app/static/fonts/glyphicons-halflings-regular.eot
app/static/fonts/glyphicons-halflings-regular.svg
app/static/fonts/glyphicons-halflings-regular.woff
app/static/fonts/glyphicons-halflings-regular.woff2
app/static/fonts/glyphicons-halflings-regular.ttf
app/static/img
app/static/img/github-icon.png
app/static/img/DBpediaLogo.svg
app/static/img/wiki.png
app/static/img/pacman_loader.gif
app/static/js
app/static/js/timeline.js
app/static/js/my_timeline.js
app/static/js/bootstrap.min.js
app/static/js/npm.js
app/static/js/jquery-2.1.4.js

我可以从哪里获取这些图标?

编辑#1 :(我base.j2模板的内容)

<!DOCTYPE html>
<html lang="en">
    <head>
        {% if title %}
        <title>{{ title }} - microblog</title>
        {% else %}
        <title>DBPedia - Die Hadoopianer</title>
        {% endif %}

        <meta charset="utf-8">
        <meta name="author" content="{% for author in authors %}{{author}}, {% endfor %}">
        <meta name="description" content="A website showing data from DBPedia">
        <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- to ensure proper rendering on mobile devices -->

        <!-- <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/latest/css/bootstrap.min.css" /> -->
        <!-- <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/latest/css/bootstrap-theme.min.css" /> -->
        <link rel="stylesheet" type="text/css" href="static/css/bootstrap.min.css" />
        <link rel="stylesheet" type="text/css" href="static/css/bootstrap-theme.min.css" />
        <!-- <link rel="stylesheet" type="text/css" href="https://cdn.knightlab.com/libs/timeline3/latest/css/timeline.css" /> -->
        <link rel="stylesheet" type="text/css" href="static/css/timeline.css" />
        <link rel="stylesheet" type="text/css" href="static/css/general.css">

        <script type="text/javascript" src="http://code.jquery.com/jquery-2.1.4.js"></script>

        <!-- <script type="text/javascript" src="https://maxcdn.bootstrapcdn.com/bootstrap/latest/js/bootstrap.min.js"></script> -->
        <script type="text/javascript" src="static/js/bootstrap.min.js"></script>

        <!--
        Javascript module for the timeline
        -->
        <script type="text/javascript" src="https://cdn.knightlab.com/libs/timeline3/latest/js/timeline.js"></script>
        <!-- <script type="text/javascript" src="static/js/timeline.js"></script> -->

        <script type="text/javascript" src="static/js/my_timeline.js"></script>
    </head>
    <body>
        {% block content %}{% endblock %}

    </body>
</html>

1 个答案:

答案 0 :(得分:1)

我在the CDN's CSS file中找到了一句话:

@font-face{font-family:tl-icons;src:url(icons/tl-icons.eot);src:url(icons/tl-icons.eot?#iefix) format('embedded-opentype'),url(icons/tl-icons.ttf) format('truetype'),url(icons/tl-icons.woff) format('woff'),url(icons/tl-icons.svg#tl-icons) format('svg');font-weight:400;font-style:normal}

据此,这些文件都可在目录&#39; https://cdn.knightlab.com/libs/timeline3/latest/css/icons/&#39;使用以下文件名:

只需下载所有这些文件,在名为app/static/css的{​​{1}}下创建一个目录以及所有这些文件。