mirror of
https://github.com/publiclab/image-sequencer.git
synced 2025-12-10 02:10:00 +01:00
* meta-modules in node Signed-off-by: tech4GT <varun.gupta1798@gmail.com> * meta-modules in browser Signed-off-by: tech4GT <varun.gupta1798@gmail.com> * update docs Signed-off-by: tech4GT <varun.gupta1798@gmail.com> * more doc Signed-off-by: tech4GT <varun.gupta1798@gmail.com> * fix typo Signed-off-by: tech4GT <varun.gupta1798@gmail.com> * update docs and sample meta-module Signed-off-by: tech4GT <varun.gupta1798@gmail.com> * add dynamic modules CLI from npm Signed-off-by: tech4GT <varun.gupta1798@gmail.com> * update Signed-off-by: tech4GT <varun.gupta1798@gmail.com> * meta-modules and sequence saving completed Signed-off-by: tech4GT <varun.gupta1798@gmail.com> * add docs Signed-off-by: tech4GT <varun.gupta1798@gmail.com> * update docs Signed-off-by: tech4GT <varun.gupta1798@gmail.com> * fixed test Signed-off-by: tech4GT <varun.gupta1798@gmail.com>
96 lines
3.0 KiB
HTML
96 lines
3.0 KiB
HTML
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
|
|
<head>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF8">
|
|
<link rel="icon" sizes="192x192" href="../icons/ic_192.png">
|
|
|
|
|
|
<title>Image Sequencer</title>
|
|
|
|
<script src="../node_modules/jquery/dist/jquery.min.js"></script>
|
|
<script src="../node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
|
|
<script src="../src/ui/prepareDynamic.js"></script>
|
|
<script src="../dist/image-sequencer.js" charset="utf-8"></script>
|
|
<script src="lib/urlHash.js" charset="utf-8"></script>
|
|
<script src="lib/defaultHtmlStepUi.js" charset="utf-8"></script>
|
|
<script src="lib/defaultHtmlSequencerUi.js" charset="utf-8"></script>
|
|
<script src="demo.js" charset="utf-8"></script>
|
|
<!-- for crop module: -->
|
|
<script src="../node_modules/imgareaselect/jquery.imgareaselect.dev.js"></script>
|
|
|
|
</head>
|
|
|
|
|
|
<body>
|
|
|
|
<link href="../node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link href="../node_modules/font-awesome/css/font-awesome.min.css" rel="stylesheet">
|
|
<link href="../node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link href="../node_modules/font-awesome/css/font-awesome.min.css" rel="stylesheet">
|
|
<!-- for crop module: -->
|
|
<link href="../node_modules/imgareaselect/distfiles/css/imgareaselect-default.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="demo.css">
|
|
|
|
<div class="container-fluid">
|
|
|
|
<header class="text-center">
|
|
<h1>Image Sequencer</h1>
|
|
<p>
|
|
A pure JavaScript sequential image processing system, inspired by storyboards. Instead of modifying the original image, it
|
|
creates a new image at each step in a sequence.
|
|
<a href="https://publiclab.org/image-sequencer">Learn more</a>
|
|
</p>
|
|
<p>
|
|
Open Source
|
|
<a href="https://github.com/publiclab/image-sequencer">
|
|
<i class="fa fa-github"></i>
|
|
</a> by
|
|
<a href="https://publiclab.org">Public Lab</a>
|
|
</p>
|
|
</header>
|
|
|
|
<div id="dropzone">
|
|
<p>
|
|
<i>Select or drag in an image to start!</i>
|
|
</p>
|
|
<center>
|
|
<input type="file" id="fileInput" value="">
|
|
</center>
|
|
</div>
|
|
|
|
<section id="steps" class="row"></section>
|
|
|
|
<hr />
|
|
|
|
<section id="addStep" class="panel panel-primary">
|
|
<div class="form-inline">
|
|
<div class="panel-body">
|
|
<div style="text-align:center;">
|
|
<select class="form-control input-lg" id="selectStep">
|
|
<option value="none" disabled selected>Select a new step...</option>
|
|
</select>
|
|
<button class="btn btn-success btn-lg" name="add">Add Step</button>
|
|
</div>
|
|
<br />
|
|
<p class="info" style="padding:8px;">Select a new module to add to your sequence.</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<button class="btn btn-primary btn-lg" name="save-sequence" id="save-seq">Save Sequence</button>
|
|
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
$(function() {
|
|
var sequencer;
|
|
})
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html> |