-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
75 lines (67 loc) · 3.73 KB
/
index.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="author" content="Satoshi Morita">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link href="https://stackpath.bootstrapcdn.com/bootswatch/4.1.3/cosmo/bootstrap.min.css" rel="stylesheet" integrity="sha384-3Ivskwia8Fui5tbQi+RW4DgTkJ8d+hW7mLe7Yk89ibmD9482VECh0WFof8kIEjwI" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<title>Animations of Tensor Networks</title>
</head>
<body class="bg-light">
<header class="container">
<h1 class="mt-4">Animations of Tensor Networks</h1>
<p class="text-right">View on <a href="https://github.com/smorita/TN_animation">GitHub</a></p>
</header>
<main class="container">
<div class="row">
<div class="col-12 col-md-6 my-2">
<div class="card">
<canvas id="trg" class="card-img-top" style="background-color: #ffffff;"></canvas>
<div class="card-body">
<h4 class="card-title">
TRG <span class="text-muted">(Tensor Renormalization Group)</span>
</h4>
<p class="card-text">
M. Levin and C. P. Nave, <a href="https://doi.org/10.1103/PhysRevLett.99.120601" target="_blank">Phys. Rev. Lett. <strong>99</strong>, 120601 (2007)</a>
</p>
<a href="video/trg.mp4" class="btn btn-primary" target="_blank">Download (4.9 MB)</a>
</div>
</div>
</div>
<div class="col-12 col-md-6 my-2">
<div class="card">
<canvas id="hotrg" class="card-img-top" style="background-color: #ffffff;"></canvas>
<div class="card-body">
<h4 class="card-title">
HOTRG <span class="text-muted">(Higher-Order Tensor Renormalization Group)</span>
</h4>
<p class="card-text">
Z. Y. Xie, et al., <a href="https://doi.org/10.1103/PhysRevB.86.045139" target="_blank">Phys. Rev. B <strong>86</strong>, 045139 (2012)</a>
</p>
<a href="video/hotrg.mp4" class="btn btn-primary" target="_blank">Download (8.8 MB)</a>
</div>
</div>
</div>
</div>
<p class="mt-2 text-right">
These animations are created using <a href="https://createjs.com/" target="_blank">CreateJS</a>.<br>
Please feel free to use MP4 movies for your presentations.<br>
I would appreciate if you cite this page.
</p>
</main>
<footer class="footer">
<div class="container text-right">
<span>© 2018 <a href="https://kawashima.issp.u-tokyo.ac.jp/people/morita/" target="_blank">Satoshi Morita</a></span>
</div>
</footer>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
<script src="https://code.createjs.com/1.0.0/createjs.min.js"></script>
<script src="js/trg.js"></script>
<script src="js/hotrg.js"></script>
<script src="index.js"></script>
</body>
</html>