-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
333 lines (283 loc) · 10.3 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
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<style type="text/css">
<!--
.style4 {color: #666666}
-->
</style>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>LANDWORK BAND</title>
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<!-- Add jQuery library -->
<script type="text/javascript" src="./lib/jquery-1.8.2.min.js"></script>
<!-- Add mousewheel plugin (this is optional) -->
<script type="text/javascript" src="./lib/jquery.mousewheel-3.0.6.pack.js"></script>
<!-- Add fancyBox main JS and CSS files -->
<script type="text/javascript" src="./source/jquery.fancybox.js?v=2.1.3"></script>
<link rel="stylesheet" type="text/css" href="./source/jquery.fancybox.css?v=2.1.2" media="screen" />
<!-- Add Button helper (this is optional) -->
<link rel="stylesheet" type="text/css" href="./source/helpers/jquery.fancybox-buttons.css?v=1.0.5" />
<script type="text/javascript" src="./source/helpers/jquery.fancybox-buttons.js?v=1.0.5"></script>
<!-- Add Thumbnail helper (this is optional) -->
<link rel="stylesheet" type="text/css" href="./source/helpers/jquery.fancybox-thumbs.css?v=1.0.7" />
<script type="text/javascript" src="./source/helpers/jquery.fancybox-thumbs.js?v=1.0.7"></script>
<!-- Add Media helper (this is optional) -->
<script type="text/javascript" src="./source/helpers/jquery.fancybox-media.js?v=1.0.5"></script>
<div id="fb-root"></div>
<script async defer crossorigin="anonymous" src="https://connect.facebook.net/pt_BR/sdk.js#xfbml=1&version=v16.0&appId=543122485719823&autoLogAppEvents=1" nonce="z2MICdMd"></script>
<script type="text/javascript">
$(document).ready(function() {
/*
* Simple image gallery. Uses default settings
*/
$('.fancybox').fancybox();
/*
* Different effects
*/
// Change title type, overlay closing speed
$(".fancybox-effects-a").fancybox({
helpers: {
title : {
type : 'outside'
},
overlay : {
speedOut : 0
}
}
});
// Disable opening and closing animations, change title type
$(".fancybox-effects-b").fancybox({
openEffect : 'none',
closeEffect : 'none',
helpers : {
title : {
type : 'over'
}
}
});
// Set custom style, close if clicked, change title type and overlay color
$(".fancybox-effects-c").fancybox({
wrapCSS : 'fancybox-custom',
closeClick : true,
openEffect : 'none',
helpers : {
title : {
type : 'inside'
},
overlay : {
css : {
'background' : 'rgba(238,238,238,0.85)'
}
}
}
});
// Remove padding, set opening and closing animations, close if clicked and disable overlay
$(".fancybox-effects-d").fancybox({
padding: 0,
openEffect : 'elastic',
openSpeed : 150,
closeEffect : 'elastic',
closeSpeed : 150,
closeClick : true,
helpers : {
overlay : null
}
});
/*
* Button helper. Disable animations, hide close button, change title type and content
*/
$('.fancybox-buttons').fancybox({
openEffect : 'none',
closeEffect : 'none',
prevEffect : 'none',
nextEffect : 'none',
closeBtn : false,
helpers : {
title : {
type : 'inside'
},
buttons : {}
},
afterLoad : function() {
this.title = 'Image ' + (this.index + 1) + ' of ' + this.group.length + (this.title ? ' - ' + this.title : '');
}
});
/*
* Thumbnail helper. Disable animations, hide close button, arrows and slide to next gallery item if clicked
*/
$('.fancybox-thumbs').fancybox({
prevEffect : 'none',
nextEffect : 'none',
closeBtn : false,
arrows : false,
nextClick : true,
helpers : {
thumbs : {
width : 50,
height : 50
}
}
});
/*
* Media helper. Group items, disable animations, hide arrows, enable media and button helpers.
*/
$('.fancybox-media')
.attr('rel', 'media-gallery')
.fancybox({
openEffect : 'none',
closeEffect : 'none',
prevEffect : 'none',
nextEffect : 'none',
arrows : false,
helpers : {
media : {},
buttons : {}
}
});
/*
* uhuuuu
*/
$("#fancybox-manual-c").click(function() {
$.fancybox.open([
{
href : 'fotos/001.jpg',
}, {
href : 'fotos/002.jpg',
}, {
href : 'fotos/003.jpg'
}
], {
helpers : {
thumbs : {
width: 75,
height: 50
}
}
});
});
});
$(document).ready(function() {
$(".various").fancybox({
maxWidth : 800,
maxHeight : 600,
fitToView : false,
width : '70%',
height : '70%',
autoSize : false,
closeClick : false,
openEffect : 'none',
closeEffect : 'none'
});
});
</script>
<style>
body
{
background-image: url(img/top3.jpg),url(img/background.jpg);
background-repeat:no-repeat,repeat;
background-position: center top, left top;
}
.style3 {
font-family: Geneva, Arial, Helvetica, sans-serif;
font-size: 12px;
}
.fancybox-custom .fancybox-skin {
box-shadow: 0 0 50px #222;
}
</style>
</head>
<body>
<table width="888" border="0" align="center">
<tr>
<th height="914" colspan="3" scope="col"> </th>
</tr>
<tr>
<td colspan="3"><div align="center">
<iframe width="800px" height="350" scrolling="no" frameborder="no" allow="autoplay" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/playlists/2297539&color=%23ff5500&auto_play=true&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true"></iframe><div style="font-size: 10px; color: #cccccc;line-break: anywhere;word-break: normal;overflow: hidden;white-space: nowrap;text-overflow: ellipsis; font-family: Interstate,Lucida Grande,Lucida Sans Unicode,Lucida Sans,Garuda,Verdana,Tahoma,sans-serif;font-weight: 100;"><a href="https://soundcloud.com/landworkband" title="landworkband" target="_blank" style="color: #cccccc; text-decoration: none;">landworkband</a> · <a href="https://soundcloud.com/landworkband/sets/landwork-the-stand" title="LandWork - The Stand" target="_blank" style="color: #cccccc; text-decoration: none;">LandWork - The Stand</a></div>
</div></td>
</tr>
<tr>
<td colspan="3">
<table id="Table_01" width="932" height="864" border="0" cellpadding="0" cellspacing="0">
<tr>
<td colspan="11">
<img src="images/band_01.jpg" width="931" height="20" alt=""></td>
<td>
<img src="images/spacer.gif" width="1" height="20" alt=""></td>
</tr>
<tr>
<td rowspan="3">
<img src="images/band_02.jpg" width="157" height="844" alt=""></td>
<td>
<a href="http://www.facebook.com/LANDWORKBAND" target="_blank"><img src="images/band_03.jpg" width="68" height="26" alt=""></a></td>
<td rowspan="3">
<img src="images/band_04.jpg" width="42" height="844" alt=""></td>
<td>
<a href="http://www.youtube.com/landworkband" target="_blank"><img src="images/band_05.jpg" width="61" height="26" alt=""></a></td>
<td rowspan="3">
<img src="images/band_06.jpg" width="41" height="844" alt=""></td>
<td rowspan="2">
<a href="http://soundcloud.com/landworkband" target="_blank"><img src="images/band_07.jpg" width="73" height="31" alt=""></a></td>
<td rowspan="3">
<img src="images/band_08.jpg" width="36" height="844" alt=""></td>
<td rowspan="2">
<a class="fancybox" rel="gallery1" href="fotos/001.jpg" >
<img src="images/band_09.jpg" width="83" height="31" alt=""></a></td>
<td rowspan="3">
<img src="images/band_10.jpg" width="30" height="844" alt=""></td>
<td rowspan="2">
<a class="various" data-fancybox-type="iframe" href="merchandise.html">
<img src="images/band_11.jpg" width="128" height="31" alt=""></a></td>
<td rowspan="3">
<img src="images/band_12.jpg" width="212" height="844" alt=""></td>
<td>
<img src="images/spacer.gif" width="1" height="26" alt=""></td>
</tr>
<tr>
<td rowspan="2">
<img src="images/band_13.jpg" width="68" height="818" alt=""></td>
<td rowspan="2">
<img src="images/band_14.jpg" width="61" height="818" alt=""></td>
<td>
<img src="images/spacer.gif" width="1" height="5" alt=""></td>
</tr>
<tr>
<td>
<img src="images/band_15.jpg" width="73" height="813" alt=""></td>
<td>
<img src="images/band_16.jpg" width="83" height="813" alt=""></td>
<td>
<img src="images/band_17.jpg" width="128" height="813" alt=""></td>
<td>
<img src="images/spacer.gif" width="1" height="813" alt=""></td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="35"> </td>
<td width="508"><iframe width="500" height="350" src="https://www.youtube.com/embed/Puq3FV5oCTc" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe></td>
<td width="380"><div class="fb-page" data-href="https://www.facebook.com/LANDWORKBAND/" data-tabs="timeline" data-width="300" data-height="350" data-small-header="false" data-adapt-container-width="true" data-hide-cover="false" data-show-facepile="true"><blockquote cite="https://www.facebook.com/LANDWORKBAND/" class="fb-xfbml-parse-ignore"><a href="https://www.facebook.com/LANDWORKBAND/">LANDWORK BAND</a></blockquote></div></td>
</tr>
<tr>
<td colspan="3"><div align="center"><img src="img/contact2.png" width="767" height="215" border="0" usemap="#Map" /></div></td>
</tr>
<tr>
<td colspan="3">
</td>
</tr>
<tr>
<td colspan="3"><div align="center" class="style3">SITE OFICIAL DA BANDA LANDWORK / TODOS OS DIREITOS RESERVADOS. 2012 ©<br />
DESENVOLVIDOR POR <a href="mailto:[email protected]" class="style4">RAPHAEL JANGI</a>, <a href="mailto:[email protected]" class="style4">WALLACE PONTES</a> & <a href="mailto:[email protected]" class="style4">DANIEL LIMA</a></div></td>
</tr>
</table>
<a class="fancybox" rel="gallery1" href="fotos/002.jpg" ></a>
<a class="fancybox" rel="gallery1" href="fotos/003.jpg" ></a>
<a class="fancybox" rel="gallery1" href="fotos/004.jpg" ></a>
<a class="fancybox" rel="gallery1" href="fotos/005.jpg" ></a>
<map name="Map" id="Map"><area shape="rect" coords="11,43,752,96" href="mailto:[email protected]" />
<area shape="rect" coords="0,114,767,169" href="mailto:[email protected]" />
</map></body>
</html>