0

私はhtmlとjoint.jsライブラリの初心者です。このコードがあり、ラップトップにhtmlとして保存すると、2つの接続された長方形を描画すると想定されますが、ブラウザーには何も表示されません。多くのライブラリをダウンロードし、html ページがある同じフォルダーに配置しましたが、何も表示されません。

私は何をすればいいですか?HTMLコードで使用したいライブラリはどこに置くことができますか?

ダウンロードしたライブラリは次のとおりです。

  • backbone.js
  • core.js
  • ジオメトリ.js
  • ジョイント.all.css
  • ジョイント.all.js
  • joint.all.min.css
  • joint.all.min.js
  • ジョイント.css
  • ジョイント.dia.cell.js
  • joint.dia.element.js
  • joint.dia.graph.js
  • joint.dia.link.js
  • joint.dia.paper.js
  • ジョイント.js
  • joint.min.css
  • joint.min.js
  • joint.shapes.devs.js
  • joint.shapes.devs.min.js
  • joint.shapes.erd.js
  • joint.shapes.erd.min.js
  • joint.shapes.fsa.js
  • joint.shapes.fsa.min.js
  • joint.shapes.org.js
  • joint.shapes.org.min.js
  • jquery.js
  • jquery.sortElements.js
  • lodash.js
  • ラファエル-min.js
  • ラファエル.js
  • vectorizer.js

    <link rel="stylesheet" type="text/css" href="joint.css" />
    <script type="text/javascript" src="joint.js" ></script>    
    <script type="text/javascript">
    
    $(function() {    
        var graph = new joint.dia.Graph;
    
        var paper = new joint.dia.Paper({
             el: $('#myholder'),
             width: 600,
             height: 200,
             model: graph
        });
    
        var rect = new joint.shapes.basic.Rect({
             position: { x: 100, y: 30 },
             size: { width: 100, height: 30 },
             attrs: { rect: { fill: 'blue' }, text: { text: 'my box', fill: 'white' } }
        });
    
        var rect2 = rect.clone();
        rect2.translate(300);
    
        var link = new joint.dia.Link({
             source: { id: rect.id },
             target: { id: rect2.id }
        });
           graph.addCells([rect, rect2, link]);
    })           
    </script>
    
    
    <div id="myholder" >
    </div>
    

皆さんのおかげで.. ライブラリのソースを Web サイトの URL に変更した後、プログラムは現在動作しています。コンピューターにダウンロードしたものを一度使用すると、再び機能しません。

<!DOCTYPE html>
<html>
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js" ></script>
<script src= "http://denknix.com/astro/lib/joint/www/build/joint.all.min.js"></script>
<link rel="stylesheet" type="text/css" href="http://www.jointjs.com/downloads/joint.css" />
<script type="text/javascript" src="http://www.jointjs.com/downloads/joint.js" ></script>   
<script type="text/javascript">
    $(function() {

        var graph = new joint.dia.Graph;

        var paper = new joint.dia.Paper({
             el: $('#myholder'),
             width: 600,
             height: 200,
             model: graph
        });

        var rect = new joint.shapes.basic.Rect({
             position: { x: 100, y: 30 },
             size: { width: 100, height: 30 },
             attrs: { rect: { fill: 'blue' }, text: { text: 'my box', fill: 'white' } }
        });

        var rect2 = rect.clone();
        rect2.translate(300);

        var link = new joint.dia.Link({
             source: { id: rect.id },
             target: { id: rect2.id }
        });
graph.addCells([rect, rect2, link]);
    })     
    </script>

    <title>Test</title>

</head>
<body>

    <div id="myholder" >
    </div>

</body></html>
4

1 に答える 1

2

この例では、次の 2 つのファイルは必要ないことに注意してください。

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js" ></script>
<script src= "http://denknix.com/astro/lib/joint/www/build/joint.all.min.js"></script>

これは jQuery が既に含まれてjoint.jsおり、もう一方joint.all.min.jsが JointJS の非常に古いバージョン (0.4) であるためです。

正しく含めた他の 2 つのファイルのみが必要です。

<link rel="stylesheet" type="text/css" href="http://www.jointjs.com/downloads/joint.css" />
<script type="text/javascript" src="http://www.jointjs.com/downloads/joint.js" ></script>

問題は、これらのファイルをコンピューターにダウンロードした後にそれらのファイルを参照する方法にあるに違いありません。

于 2014-01-23T18:54:23.037 に答える