-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (23 loc) · 976 Bytes
/
index.html
File metadata and controls
23 lines (23 loc) · 976 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html style="font-family: sans-serif">
<link rel="stylesheet" href="style.css">
<script src="main.js"></script>
<script src="mathTools.js"></script>
<title>Canvas Sandbox</title>
<h1>Cat Swarm Optimization</h1>
<h2>Reference</h2>
<p>
Chu, S. C., Tsai, P. W., & Pan, J. S. (2006, August).
Cat swarm optimization.
<i>Pacific Rim international conference on artificial intelligence,</i>
854-858.
<a href="https://doi.org/10.1007/978-3-540-36668-3_94">https://doi.org/10.1007/978-3-540-36668-3_94</a>
</p>
<ul>
<li><a href="https://link.springer.com/chapter/10.1007/978-3-540-36668-3_94">Springer Link</a></li>
</ul>
<div>
<canvas id="canvas" class="layer">Your browser does not support the canvas tag.</canvas><!--canvasのサイズをcssでいじると画素数が変わらずに伸縮する-->
<div id="upper" class="layer"></div>
</div>
</html>