1.js 520 B

12345678910
  1. $(function() {
  2. $('.banner').unslider({
  3. speed: 500, // The speed to animate each slide (in milliseconds)
  4. delay: 8000, // The delay between slide animations (in milliseconds)
  5. complete: function() {}, // A function that gets called after every slide animation
  6. keys: true, // Enable keyboard (left, right) arrow shortcuts
  7. dots: true, // Display dot navigation
  8. fluid: false // Support responsive design. May break non-responsive designs
  9. });
  10. });