-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathslideshow.html
executable file
·31 lines (22 loc) · 1.23 KB
/
slideshow.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
<!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" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" >
<head>
<script src="js/jquery-1.11.0.min.js"></script>
<script type="text/javascript" src="js/jqFancyTransitions.js"></script>
<link rel="stylesheet" type="text/css" href="css/style.css"/>
<link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.min.css"/>
<link rel="stylesheet" type="text/css" href="css/hover.css"/>
<link rel="stylesheet" type="text/css" href="css/hover-min.css"/>
<link href="css/lightbox.css" rel="stylesheet" />
</head>
<body>
<div class="index-left" id="slideshow">
<img src="images/Treppe.jpg" alt="Seite 01" />
<img src="images/Baeume.png" alt="Seite 02" />
<img src="images/Ideen_2.png" alt="Seite 03" />
</div>
<script type="text/javascript">
$('#slideshow').jqFancyTransitions({ width: 1050, height: 286, delay: 1000, effect: 'fountainAlternate', direction: 'top', stripDelay: 80, strips: 10, titleOpacity: 0.0, position: 'alternate'});
</script>
</body>
</html>