-
Notifications
You must be signed in to change notification settings - Fork 0
/
foods-museum3.html
71 lines (67 loc) · 2.45 KB
/
foods-museum3.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
<!DOCTYPE html>
<html lang="jp">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>UEC FoodsMuseum</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Animated Responsive Image Grid - Cycling through a set of images in a responsive grid." />
<meta name="keywords" content="grid, images, thumbnails, responsive, css3, jquery, javascript, random, transition, 3d, perspective" />
<meta name="author" content="Codrops" />
<link rel="shortcut icon" href="./assets/img/favicon.ico">
<link rel="stylesheet" type="text/css" href="css/demo.css" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<script type="text/javascript" src="js/modernizr.custom.26633.js"></script>
<noscript>
<link rel="stylesheet" type="text/css" href="css/fallback.css" />
</noscript>
<!--[if lt IE 9]>
<link rel="stylesheet" type="text/css" href="css/fallback.css" />
<![endif]-->
</head>
<body>
<div class="container">
<header class="codrops-header">
<h1>Image-to-Image Food Domain Transfer using Conditional CycleGAN</h1>
<h2>Ryosuke Tanno, Shu Naritomi, Daichi Horita</h2>
<br>
<h2>The University of Electro-Communications, Tokyo, Japan.</h2>
<nav class="codrops-demos">
<!-- <a href="index.html">Home</a> -->
<a href="index.html">Demo 1</a>
<a href="foods-museum2.html">Demo 2</a>
<a class="current-demo" href="foods-museum3.html">Demo 3</a>
<a href="foods-museum4.html">Demo 4</a>
</nav>
</header>
<section class="main">
<div id="ri-grid" class="ri-grid ri-grid-size-1 ri-shadow">
<img class="ri-loading-image" src="images/loading.gif"/>
<ul>
<script>
for ( var i = 0 ; i < 352 ; i++ ){
document.write(`<li><a href='#'><img src='images/medium/3/img_${i}.jpg'/></a></li>`);
}
</script>
</ul>
</div>
</section>
</div>
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.gridrotator.js"></script>
<script type="text/javascript">
$(function() {
$( '#ri-grid' ).gridrotator( {
w320 : {
rows : 3,
columns : 4
},
w240 : {
rows : 3,
columns : 3
}
} );
});
</script>
</body>
</html>