-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
65 lines (58 loc) · 2.23 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="initial-scale=1, maximum-scale=1">
<title>CssGram & Masonry Experience</title>
<link rel="stylesheet" href="inc/assets/css/style.css">
<link rel="stylesheet" href="inc/assets/css/cssgram.min.css">
</head>
<body>
<h1>Preliminary structure for a js application with:</h1>
<ul>
<li><a href="#">Sass</a></li>
<li><a href="#">Grunt</a></li>
<li><a href="#">Bootstrap 4, Avalanche or Foundation</a></li>
<li><a href="#">Flex Box</a></li>
<li><a href="#">CssGram</a></li>
<li><a href="#">Masonry</a></li>
</ul>
<div id="container">
<figure id="getRandomImg">
<!-- <img src="inc/assets/img/one.jpg" alt="image-1"> -->
<figcaption>#caption</figcaption>
</figure>
<figure id="loadRandomImg">
<!-- <img src="inc/assets/img/two.jpg" alt="image-2"> -->
<figcaption>#caption</figcaption>
</figure>
<figure id="">
<img src="inc/assets/img/three.jpg" alt="image-3">
<figcaption>#caption</figcaption>
</figure>
</div>
<!-- load random images -->
<h6>to be implemented</h6>
<button type="button" name="random-images">Reload Random images</button>
<p> ----------------------------- ----------------------------- ----------------------------- </p>
<!-- upload local pictures -->
<h6>to be implemented</h6>
<input type="file" multiple webkitdirectory mozdirectory msdirectory odirectory directory />
<p>
[<a href="http://jsfiddle.net/Dk9rc/">http://jsfiddle.net/Dk9rc/</a>]
<br>
full tread here: <a href="http://stackoverflow.com/questions/22113331/select-random-image-files-from-folder-jquery">Select random image files from folder JQuery</a>
</p>
<p> ----------------------------- ----------------------------- ----------------------------- </p>
<!-- github repo -->
<h3>
<a href="https://github.com/giorgioriccardi/cssgram-masonry" target="_blank">Git repo</a>
</h3>
<p> ----------------------------- ----------------------------- ----------------------------- </p>
<!-- get Page Load Time -->
<div id="load_time"></div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
<script src="inc/assets/js/app.js"></script>
</body>
</html>