forked from monnerat/web_2024
maj src
This commit is contained in:
parent
13f26258f5
commit
8b173f9599
R4.01_R4.A.10/td_tp/tp1
src.tar.gz
src
Binary file not shown.
@ -3,8 +3,11 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="viewport" content="initial-scale=1,witdh=device-width">
|
<meta name="viewport" content="initial-scale=1,witdh=device-width">
|
||||||
|
<link
|
||||||
|
rel="stylesheet"
|
||||||
|
href="https://cdn.jsdelivr.net/npm/bulma@1.0.2/css/bulma.min.css"
|
||||||
|
>
|
||||||
|
|
||||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css">
|
|
||||||
|
|
||||||
<script src="graph.js" type="text/javascript"></script>
|
<script src="graph.js" type="text/javascript"></script>
|
||||||
<script>
|
<script>
|
||||||
|
@ -2,7 +2,14 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<link rel="stylesheet" href="http://www.iut-fbleau.fr/css/tacit.css">
|
<meta name="viewport" content="initial-scale=1,witdh=device-width">
|
||||||
|
|
||||||
|
<link
|
||||||
|
rel="stylesheet"
|
||||||
|
href="https://cdn.jsdelivr.net/npm/bulma@1.0.2/css/bulma.min.css"
|
||||||
|
>
|
||||||
|
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
<body class="m-6">
|
<body class="m-6">
|
||||||
<main class="container">
|
<main class="container">
|
||||||
|
8
R4.01_R4.A.10/td_tp/tp1/src/langton/css/style.css
Normal file
8
R4.01_R4.A.10/td_tp/tp1/src/langton/css/style.css
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
canvas {
|
||||||
|
position : absolute ;
|
||||||
|
top : 0;
|
||||||
|
left : 0;
|
||||||
|
z-index : -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
@ -6,41 +6,35 @@
|
|||||||
<meta name="viewport" content="initial-scale=1,witdh=device-width">
|
<meta name="viewport" content="initial-scale=1,witdh=device-width">
|
||||||
|
|
||||||
<title>Fourmi de Langton</title>
|
<title>Fourmi de Langton</title>
|
||||||
|
<link
|
||||||
|
rel="stylesheet"
|
||||||
|
href="https://cdn.jsdelivr.net/npm/bulma@1.0.2/css/bulma.min.css"
|
||||||
|
>
|
||||||
|
|
||||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css">
|
<link rel="stylesheet" href="./css/style.css">
|
||||||
<style>
|
|
||||||
canvas {
|
|
||||||
position : absolute ;
|
|
||||||
top : 0;
|
|
||||||
left : 0;
|
|
||||||
z-index : -1;
|
|
||||||
}
|
|
||||||
.control {
|
|
||||||
position : absolute ;
|
|
||||||
top : 0;
|
|
||||||
left : 0;
|
|
||||||
width : auto;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<div class="control m-6 has-text-centered">
|
<div class="is-pulled-left m-6 has-text-centered">
|
||||||
<h4 class="has-text-primary-dark title is-4">
|
|
||||||
Fourmi de Langton
|
|
||||||
</h4>
|
|
||||||
|
|
||||||
<nav class="m-3">
|
<h4 class="has-text-primary-dark title is-4">
|
||||||
<button class="button" id="next-move">Next</button>
|
Fourmi de Langton
|
||||||
<button class="button" id="autoplay">Auto</button>
|
</h4>
|
||||||
<button class="button" id="plus-100">+100</button>
|
|
||||||
</nav>
|
<nav class="m-3">
|
||||||
|
<button class="button" id="next-move">Next</button>
|
||||||
|
<button class="button" id="autoplay">Auto</button>
|
||||||
|
<button class="button" id="plus-100">+100</button>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
<p class="mb-6 is-size-7">
|
||||||
|
Nombre de mouvements : <span id="move-value"></span>
|
||||||
|
</p>
|
||||||
|
|
||||||
<p class="mb-6 is-size-7">
|
|
||||||
Nombre de mouvements : <span id="move-value"></span>
|
|
||||||
</p>
|
|
||||||
</div>
|
</div>
|
||||||
<canvas></canvas>
|
|
||||||
|
<canvas></canvas>
|
||||||
|
|
||||||
<script type="module" src="app.js"></script>
|
<script type="module" src="app.js"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
@ -30,8 +30,8 @@ function render(langtonsAnt, canvas, options) {
|
|||||||
|
|
||||||
// We're going to draw each square with a given edge size
|
// We're going to draw each square with a given edge size
|
||||||
|
|
||||||
const tileSizeW = tileSize//w / gridSizeW ;
|
const tileSizeW = tileSize;//w / gridSizeW ;
|
||||||
const tileSizeH = tileSize //h / gridSizeH ;
|
const tileSizeH = tileSize; //h / gridSizeH ;
|
||||||
|
|
||||||
// Get the drawing context.
|
// Get the drawing context.
|
||||||
var ctx = canvas.getContext('2d');
|
var ctx = canvas.getContext('2d');
|
||||||
|
Loading…
x
Reference in New Issue
Block a user