Commit eff4e3732ad43c8bcb92a48931e1440194666ef7

Authored by Quillot Mathias
1 parent 8a33df3869
Exists in master

Add Konva JS to the project. Code HTML and link to the documentation in the readme file

Showing 2 changed files with 4 additions and 0 deletions Inline Diff

1 # Triangle experiment 1 # Triangle experiment
2 This triangle is an 2D space where we ask a subject to place a point. Each point of the triangle is a reference. In similarity experiment, we ask the subject to place the point with respect to its similarity with each reference. What we propose in this repository is firstly a proof of concept of this kind of experiment that will tend to become a framework usable for many types of experiments. 2 This triangle is an 2D space where we ask a subject to place a point. Each point of the triangle is a reference. In similarity experiment, we ask the subject to place the point with respect to its similarity with each reference. What we propose in this repository is firstly a proof of concept of this kind of experiment that will tend to become a framework usable for many types of experiments.
3
4 # Library documentation
5 - *Konva*: https://konvajs.org/
1 <html> 1 <html>
2 <head> 2 <head>
3 <meta charset="UTF-8"> 3 <meta charset="UTF-8">
4 <title>Mockup Triangle Interface</title> 4 <title>Mockup Triangle Interface</title>
5 <script src="https://unpkg.com/konva@3.3.2/konva.min.js"></script>
5 </head> 6 </head>
6 <body> 7 <body>
7 <h1>Mockup Triangle Interface</h1> 8 <h1>Mockup Triangle Interface</h1>
8 <p> 9 <p>
9 First example of mockup. 10 First example of mockup.
10 </p> 11 </p>
11 </body> 12 </body>
12 </html> 13 </html>