ixedit
ixedit copied to clipboard
IxEdit is a JavaScript-based interaction design and Javascript(jQuery) code generation tool for the web.
ixedit
IxEdit is a JavaScript-based interaction design tool for the web. With IxEdit, designers can practice DOM-scripting without coding to change, add, move, or transform elements dynamically on your web pages. Especially, IxEdit must be useful to try various interactions rapidly in the prototyping phase of your web application.
The project is compatible with those browsers.
- Firefox 12.0+
- IE8+
- Chrome 19.0.1084.46+
- Safari 6.0.3+
Install
Copy and paste the HTML code:
<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/ui/jquery-ui-git.js"></script>
<script type="text/javascript" src="http://rawgit.com/perchouli/ixedit/master/ixedit.js"></script>
<link href="http://rawgit.com/perchouli/ixedit/master/ixedit.css" rel="stylesheet">
Usage
- Open the
index.htmlfile inside of a web browser. - if you installed python, run
python server.py
And access http://127.0.0.1:8000.
- Or use grunt
$ npm install -g grunt-cli
Install all dependencies in repo's root and run:
$ npm install
$ grunt server
Basic operation flow
- Click “New” button in the list view to open the edit view to make a new interaction.
- In the action edit area, specify an event and target element(s) as the trigger of interaction.
- In the reaction edit area, specify a command and its parameters. You can make multiple reactions for one action.
- Click “Done” button to save the interaction you created. IxEdit Dialog switches back to the list view.