33 lines
808 B
HTML
33 lines
808 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<!-- Load the Paper.js library -->
|
||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/paper.js/0.12.17/paper-full.js" type="text/javascript" charset="utf-8"></script>
|
||
|
<!-- <script type="text/javascript" src="https://unpkg.com/paper@0.12.0/dist/paper-full.min.js"></script> -->
|
||
|
<!-- Define inlined PaperScript associate it with myCanvas -->
|
||
|
<!-- <script type="text/paperscript" canvas="beamLine" src="test_paper.js"></script> -->
|
||
|
|
||
|
|
||
|
<style>
|
||
|
|
||
|
body{
|
||
|
background-color : white;
|
||
|
}
|
||
|
/*canvas{*/
|
||
|
/* width: 99%;
|
||
|
height:98%; */
|
||
|
/* border: 1px solid black; */
|
||
|
/*}*/
|
||
|
#beamLine{
|
||
|
position: absolute;
|
||
|
z-index: 0;
|
||
|
}
|
||
|
|
||
|
</style>
|
||
|
|
||
|
</head>
|
||
|
<body>
|
||
|
<canvas id="nuclearChart" ></canvas>
|
||
|
<script type="text/javascript" src="nuclearChart.js"></script>
|
||
|
</body>
|
||
|
</html>
|