February 2, 201016 yr Hello friends, just tried jquery contentslider on mypagebut i cant see the content
February 2, 201016 yr Try this jQuery Cycle plugin instead. It's very easy to set up, and I guarantee it will work. I'm using it on my own website. You could set up a navigation just like the one you have, by pasting this: <html> <head> <title>My Page Title</title> </head> <body><!-- open body --> <div id="featured-slider"> <div id="slider"> <!-- all elements in here, will get cycled through. Could be a div, an image, or a link --> </div><!-- end #slider --> <div id="navigation"> <a id="prev">Prev</a> <ul id="nav"><!-- tabs will be auto generated in here --></ul> <a id="next">Next</a> </div> </div> </body><!-- end body --> <!-- Links to JS --> <script src="/path/to/folder/jquery.js" type="text/javascript"></script> script src="/path/to/folder/cycle.js" type="text/javascript"></script> <script type="text/javascript"> $(function() { $('#slideshow').cycle({ fx: 'scrollHorz', timeout: 0, prev: '#prev', next: '#next', pager: '#nav', pagerAnchorBuilder: pagerFactory }); function pagerFactory(idx, slide) { var s = idx > 2 ? ' style="display:none"' : ''; return '<li'+s+'><a href="#">'+(idx+1)+'</a></li>'; }; }); </script> </html> Let me know if you need help.
Create an account or sign in to comment