Created
June 10, 2010 15:34
-
-
Save pete-otaqui/433165 to your computer and use it in GitHub Desktop.
Simple glow carousel implementation.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" | |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<title>Hello Glow</title> | |
<script src="glow/1.7.3/core/core.js" type="text/javascript"></script> | |
<script src="glow/1.7.3/widgets/widgets.js" type="text/javascript"></script> | |
<link href="glow/1.7.3/widgets/widgets.css" type="text/css" rel="stylesheet" /> | |
<script type="text/javascript"> | |
glow.ready(function() { | |
myCarousel = new glow.widgets.Carousel('#carousel'); | |
}); | |
</script> | |
</head> | |
<body> | |
<ul id="carousel"> | |
<li><img src="images/image_01.jpg" width="200" height="200" alt="image" /></li> | |
<li><img src="images/image_02.jpg" width="200" height="200" alt="image" /></li> | |
<li><img src="images/image_03.jpg" width="200" height="200" alt="image" /></li> | |
<li><img src="images/image_04.jpg" width="200" height="200" alt="image" /></li> | |
<li><img src="images/image_05.jpg" width="200" height="200" alt="image" /></li> | |
<li><img src="images/image_06.jpg" width="200" height="200" alt="image" /></li> | |
<li><img src="images/image_07.jpg" width="200" height="200" alt="image" /></li> | |
</ul> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Simple glow carousel implementation.