-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
80 lines (71 loc) · 1.43 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
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery H-Smart-Thumnail Plugin</title>
<meta name="description" content="h-smart-thumbnail jquery plugin">
<meta name="author" content="Hassan Raza">
<link rel="stylesheet" href="./css/h-smart-thumbnail.min.css">
<style type="text/css">
.container{
max-width: 100%;
text-align: center;
min-height: calc(100vh - 70px);
}
footer{
padding: 10px;
background-color: #000;
text-align: center;
}
footer span{
color: #fff;
}
footer span a{
text-decoration: none;
color: #fff;
font-weight: bold;
}
</style>
</head>
<body>
<div class="container">
<h1>H-Smart-Thumbail jQuery Plugin</h1>
<div>
<strong>Demo:</strong>
</div>
<hr>
<div class="plugin">
<ul>
<li>
<img src="img/img1.jpg">
</li>
<li>
<img src="img/img2.jpg">
</li>
<li>
<img src="img/img3.jpg">
</li>
<li>
<img src="img/img4.jpg">
</li>
<li>
<img src="img/img5.jpg">
</li>
<li>
<img src="img/img6.jpg">
</li>
</ul>
</div>
</div>
<footer>
<span>
Developed By: <a href="http://haxxanraxa.github.io/" target="_blank">Hassan Raza</a>
</span>
</footer>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"></script>
<script src="./js/h-smart-thumbnail.min.js"></script>
<script type="text/javascript">
$('.plugin').hSmartThumbnail();
</script>
</body>
</html>