forked from saqi/Maybank
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallery.html
126 lines (111 loc) · 3.35 KB
/
gallery.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="style.css">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<title>Maybank Associates - Hello in Our Gallery</title>
<script id="jQ" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
document.documentElement.className = document.documentElement.className.replace(/\bno-js\b/,'js');
/* Make sure jQuery is there */
$ = $ || (document.getElementById('jQ').src = 'jquery.min.js');
</script>
</head>
<body>
<article id="gallery" class="page">
<a id="header" href=".">
<header>
<hgroup>
<h1>Maybank Associates</h1>
<h2>Architectural Restorations</h2>
</hgroup>
</header>
</a>
<nav>
<ul id="menu">
<li><a href=".">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a class="current" href="gallery.html">Gallery</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<main>
<h1>Welcome in Our Gallery</h1>
<style>
#sshow {
margin:0 auto;
width: 100%;
height: 500px;
border: 5px solid red;
background-image: url(./Images/carrousel.png);
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
display: flex;
}
#sshow button {
flex: auto;
padding: 1em;
border:2px solid black;
background: transparent;
}
#sshow button:hover {
}
</style>
<div id="sshow">
<button id="prev">❮</button>
<button id="playstop">►</button>
<button id="next">❯</button>
</div>
<script>
var galeria = ['./Images/carrousel.png', './Images/carrousel1.png',
'./Images/carrousel2.png', './Images/carrousel3.png', './Images/carrousel4.png'];
var index = 0;
function changeSlide(param) {
switch (param) {
case '+':
index++;
if (index >= galeria.length) index= 0;
$('#sshow').css('background-image', 'url('+galeria[index]+')');
break;
case '-':
index--;
if (index < 0) index= galeria.length - 1;
$('#sshow').css('background-image', 'url('+galeria[index]+')');
break;
default:
break;
}
$('#licznik').text(`index=${index}`);
}
$('#prev').click(function () { changeSlide('-'); });
$('#next').click(function () { changeSlide('+'); });
</script>
<p id="licznik">index= </p>
</main>
<footer>
<h1>Maybank</h1>
<h2>Constantine Hall Drive Gosfield Essex CO9 1SY</h2>
<ul id="emails">
<li>[email protected]</li>
<li>[email protected]</li>
<li>[email protected]</li>
</ul>
<ul id="tel">
<li><strong>M</strong>: 07702 458935</li>
<li><strong>M</strong>: 07531 525118</li>
<li><strong>T</strong>: 01787 273721</li>
</ul>
<h3>Maybank Associates Limited</h3>
<p>A limited company registered in England and Wales Registered number 8334740 VAT number: 720 0518 85</p>
<h4>© 2018 Website designed by <a href="https://github.com/saqi">Saq</a> and <a href="https://github.com/adam17">Adam</a></h4>
</footer>
</article>
<script src="slideshow.js"></script>
<script src="slideup.js"></script>
</body>
</html>