I want to implement the slider on a page, but thought I would try the example on its own first. Nothing displays, at all. I have searched through the forms and made some slight changes, but still no avail. Below is the code:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"> </script>
<script src="jquerySlider/js/bjqs-1.3.js"></script>
<link type="text/css" rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css">
<link type="text/css" rel="Stylesheet" href="jquerySlider/bjqs.css" />
<style TYPE="text/css">
<!--
#my-slideshow {
background-color:#A3CF2E;
}
-->
</style>
</head>
<body>
<div id="my-slideshow">
<ul class="bjqs">
<li>first time for me</li>
<li>second round of the game</li>
</ul>
</div>
<script>
jQuery(document).ready(function($) {
$('#banner-fade').bjqs({
'height' : 320,
'width' : 620,
'responsive' : true,
'animtype' : 'fade', // accepts 'fade' or 'slide'
'animduration' : 450,
'animspeed' : 4000,
'automatic' : true,
'showcontrols' : true,
'centercontrols' : true,
'nexttext' : 'Next',
'prevtext' : 'Prev',
'showmarkers' : true,
'centermarkers' : true,
'keyboardnav' : true,
'hoverpause' : true,
'usecaptions' : true,
'randomstart' : true,
});
});
</script>
</body>
</html>