aqui mi codigo de lo que llevo echo :
Código:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Slider JQ</title> <style> #contenedor img{ width: 660px; height:400px; } #contenedor{ height: 400px; width:660px; margin:0 auto; overflow: hidden; border:groove 10px #000; } #botonera{ text-align: center; width:150px; height:40px; margin:10px auto; } </style> <script src="JQuery.js"></script> <script> $(document).on('ready',function () { $('#adelante').on('click',function(){ $('#contenedor img:first').appendTo('#contenedor'); }) $('#atras').on('click',function(){ $('#contenedor img:last').prependTo('#contenedor:first'); }) }) </script> </head> <body> <div id="contenedor"> <img src="IMG1.jpg" alt=""> <img src="IMG2.png" alt=""> <img src="IMG3.jpg" alt=""> </div> <div id="botonera"> <button id="atras">Previus</button> <button id="adelante">Next</button> <!--<button></button>--> </div> </body> </html>