index.html 5.6 KB
Newer Older
J
Jason Park 已提交
1 2 3 4
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
J
Jason Park 已提交
5 6 7 8 9
    <meta name="description" content="Tool for visualizing algorithms."/>
    <meta property="og:title" content="Algorithm Visualizer"/>
    <meta property="og:description" content="Tool for visualizing algorithms."/>
    <meta property="og:image" content="img/image.png"/>
    <link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon"/>
J
Jason Park 已提交
10 11 12
    <title>Algorithm Visualizer</title>
    <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto">
    <link rel="stylesheet" href="css/font-awesome.min.css">
J
Jason Park 已提交
13
    <link rel="stylesheet" href="css/gh-fork-ribbon.css"/>
J
Jason Park 已提交
14
    <link rel="stylesheet" href="css/stylesheet.css">
J
Jason Park 已提交
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
</head>
<body>
<nav>
    <button id="navigation">
        <h3>
            Algorithm Visualizer
            <i class="fa fa-angle-right nav-arrow" aria-hidden="true"></i>
            <span id="category"></span>
            <i class="fa fa-angle-right nav-arrow" aria-hidden="true"></i>
            <span id="algorithm"></span>
            <i class="fa fa-caret-up nav-dropdown" aria-hidden="true"></i>
        </h3>
    </button>
    <div class="buttons">
        <button id="btn_run"><i class="fa fa-play" aria-hidden="true"></i> Run</button>
        <button id="btn_prev"><i class="fa fa-chevron-left" aria-hidden="true"></i> Prev</button>
        <button id="btn_pause"><i class="fa fa-pause" aria-hidden="true"></i> Pause</button>
        <button id="btn_next">Next <i class="fa fa-chevron-right" aria-hidden="true"></i></button>
33
        <button id="btn_interval">Interval: <input type="text" value="0.5"> sec</button>
J
Jason Park 已提交
34 35 36 37 38
    </div>
</nav>
<section class="sidemenu active">
    <div id="list">
    </div>
J
Jason Park 已提交
39 40
    <div id="header">
        <a href="https://github.com/parkjs814/AlgorithmVisualizer/wiki">
J
Jason Park 已提交
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
            <button><i class="fa fa-book"></i> Documentation</button>
        </a>
        <button class="category"><i class="fa fa-github"></i> Powered by ...</button>
        <a href="https://github.com/jquery/jquery">
            <button class="indent">jquery/jquery</button>
        </a>
        <a href="https://github.com/ajaxorg/ace">
            <button class="indent">ajaxorg/ace</button>
        </a>
        <a href="https://github.com/jacomyal/sigma.js">
            <button class="indent">jacomyal/sigma.js</button>
        </a>
        <a href="https://github.com/FortAwesome/Font-Awesome">
            <button class="indent">FortAwesome/Font-Awesome</button>
        </a>
        <a href="https://github.com/simonwhitaker/github-fork-ribbon-css">
            <button class="indent">simonwhitaker/github-fork-ribbon-css</button>
J
Jason Park 已提交
58
        </a>
J
Jason Park 已提交
59

J
Jason Park 已提交
60
    </div>
J
minor  
Jason Park 已提交
61 62
    <a class="github-fork-ribbon left-bottom" href="http://github.com/parkjs814/AlgorithmVisualizer"
       title="Fork me on GitHub">Fork me on GitHub</a>
J
Jason Park 已提交
63 64 65
</section>
<div class="workspace">
    <div class="viewer_container">
J
Jason Park 已提交
66 67 68 69
        <section class="tab_bar">
            <button class="active" id="btn_desc">Description</button>
            <button id="btn_trace">Trace</button>
        </section>
J
Jason Park 已提交
70
        <section class="tab_container">
J
Jason Park 已提交
71
            <div class="tab active" id="tab_desc">
J
Jason Park 已提交
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
                <div class="wrapper">
                    <h2 id="desc_title"></h2>
                    <p id="desc_def"></p>
                    <hr/>
                    <h3>Application</h3>
                    <ul id="desc_app"></ul>
                    <hr/>
                    <h3>Complexity</h3>
                    <p>
                        <strong>Time</strong> <span id="desc_time"></span><br/>
                        <strong>Space</strong> <span id="desc_space"></span>
                    </p>
                    <hr/>
                    <h3>Reference</h3>
                    <ul id="desc_ref"></ul>
                </div>
            </div>
J
Jason Park 已提交
89
            <div class="tab module_container" id="tab_module">
J
Jason Park 已提交
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
            </div>
        </section>
    </div>
    <div class="editor_container">
        <section class="files_bar">
        </section>
        <section class="explanation_container">
            <i class="fa fa-info-circle" aria-hidden="true"></i> <span id="explanation"></span>
        </section>
        <section class="data_container">
            <pre id="data"></pre>
        </section>
        <section class="code_container">
            <pre id="code"></pre>
        </section>
    </div>
</div>
<div class="toast_container">
</div>
<script src="js/jquery-2.2.3.min.js"></script>
<script src="js/sigma/sigma.min.js"></script>
<script src="js/sigma/plugins/sigma.plugins.dragNodes.min.js"></script>
<script src="js/ace/ace.js"></script>
J
Jason Park 已提交
113
<script src="js/ace/ext-language_tools.js"></script>
J
Jason Park 已提交
114
<script src="js/module/tracer_manager.js"></script>
J
minor  
Jason Park 已提交
115
<script src="js/module/tracer.js"></script>
116 117 118
<script src="js/module/log_tracer.js"></script>
<script src="js/module/array2d.js"></script>
<script src="js/module/array1d.js"></script>
119
<script src="js/module/directed_graph.js"></script>
J
Jason Park 已提交
120
<script src="js/module/undirected_graph.js"></script>
J
Jason Park 已提交
121
<script src="js/module/weighted_directed_graph.js"></script>
J
Jason Park 已提交
122
<script src="js/module/weighted_undirected_graph.js"></script>
J
Jason Park 已提交
123
<script src="js/script.js"></script>
J
Jason Park 已提交
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
<script>
    (function (i, s, o, g, r, a, m) {
        i['GoogleAnalyticsObject'] = r;
        i[r] = i[r] || function () {
                    (i[r].q = i[r].q || []).push(arguments)
                }, i[r].l = 1 * new Date();
        a = s.createElement(o),
                m = s.getElementsByTagName(o)[0];
        a.async = 1;
        a.src = g;
        m.parentNode.insertBefore(a, m)
    })(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
    ga('create', 'UA-78128848-1', 'auto');
    ga('send', 'pageview');
</script>
J
Jason Park 已提交
139 140
</body>
</html>