Hello,
I am a web design rookie. I am having trouble creating a basic jquery carousel slideshow using Galleria. You can visit their site here:
http://galleria.aino.se/
I followed the directions given on the site tutorial yet nothing comes up when I preview my slideshow in any browser. However, the three demo pictures I uploaded appear next to one another in the workspace in Dreamweaver. Can anybody look at my html and tell me what could be going wrong? Here's my html:
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
<script src="../Desktop/galleria/galleria-1.2.3.js"></script>
</head>
<body>
<div id="gallery">
<img src="../Downloads/Donate Carousel.jpg">
<img src="../Downloads/Harvest Carousel.jpg">
<img src="../Downloads/Manifest Glory 4.jpg">
</div>
<script>
Galleria.loadTheme('galleria/themes/classic/galleria.classic.min.js');
$("#gallery").galleria({
width: 476,
height: 329
});
</script>
</body>
</html>
I am a web design rookie. I am having trouble creating a basic jquery carousel slideshow using Galleria. You can visit their site here:
http://galleria.aino.se/
I followed the directions given on the site tutorial yet nothing comes up when I preview my slideshow in any browser. However, the three demo pictures I uploaded appear next to one another in the workspace in Dreamweaver. Can anybody look at my html and tell me what could be going wrong? Here's my html:
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
<script src="../Desktop/galleria/galleria-1.2.3.js"></script>
</head>
<body>
<div id="gallery">
<img src="../Downloads/Donate Carousel.jpg">
<img src="../Downloads/Harvest Carousel.jpg">
<img src="../Downloads/Manifest Glory 4.jpg">
</div>
<script>
Galleria.loadTheme('galleria/themes/classic/galleria.classic.min.js');
$("#gallery").galleria({
width: 476,
height: 329
});
</script>
</body>
</html>