-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdemo.html
50 lines (50 loc) · 1.44 KB
/
demo.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<title>Demos | PharoJS</title>
<!-- <meta http-equiv="refresh" content="0; url=./successStories.html" /> -->
<style>
.demo{
text-align: center;
display: inline-block;
margin: auto;
width: 400px;
vertical-align: top;
}
.demo img{
width:100%;
}
</style>
<link rel="stylesheet" type="text/css" href="css/pharoJS.css"/>
</head>
<body>
<div class="pjHeader">
<a href="http://pharojs.org"><img alt="PharoJS Logo" src="img/pharoJsBicolorLogo2016-08-12.png"></a>
<h1>Live Demos</h1>
</div>
<p>Anything you can do in JS, you can do it in Pharo, thanks to PharoJS. PharoJS allow reusing and extending in
Pharo any third-party library developed in JavaScript. Here are some examples. The code for these and more is available in the <a
href="https://github.com/PharoJS/PharoJS" target="_blank">PharoJS GitHub repository.</a></p>
<div style="text-align: center;">
<a href="Demos/MatterJsDemo/index.html" class="demo">
<h2>MatterJS Physics Engine</h2>
<img src="img/matterJsDemo.png">
</a>
<a href="Demos/D3JsDemo/index.html" class="demo">
<h2>D3JS Data Visualisation Library</h2>
<img src="img/d3JsDemo.png">
</a>
<a href="Demos/PjThreeJsDemo/index.html" class="demo">
<h2>ThreeJS 3D Graphics Library</h2>
<img src="img/threeJsDemo.png">
</a>
</div>
</body>
</html>
<!--
-*- Local Variables:
-*- coding: utf-8
-*- mode: HTML
-*- fill-column: 1000
-*- End:
-->