llevo dias probando el como cambiar los numeros que vereis a continuación por unas imagenes, pero ni si quiera me sale el scrollable que aparece en la siguiente web:
http://flowplayer.org/tools/scrollable.html
Quiero primero que me aparezca lo que sería la barra con los numeros correctamente, cosa que no es así, y que pueda desplazar la barra de un lado a otro.
Y segundo cambiar los numeros por imagenes que se adapten al tamaño.
Os pongo aquí el codigo:
Código HTML:
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title></title> </head> <style type="text/javascript"> $("#scrollable").scrollable({items:'.items',horizontal:true}); <script language=”JavaScript” src=”jquery.mousewheel.js”></script> <script> $(function() { $("#scrollable").scrollable({horizontal:true}); }); </script> </style> <style type="text/css"> <?php include("scrollable.css"); ?> </style> <body> <div id="scrollable"> <div class="navi"><span page="0" class="active"/><span page="1"/><span page="2"/></div> <a class="prev"/> <div class="items" style="overflow: hidden; position: relative; visibility: visible; width: 478px;"> <div style="position: absolute; width: 200000em;" class="__scrollable"> <a>1</a><a>2</a><a>3</a><a>4</a><a>5</a><a>6</a><a>7</a><a>8</a><a>9</a><a>10</a><a>11</a><a>12</a><a>13</a><a>14</a><a>15</a></div><br clear="all"/> </div> <a class="next"/> </div> </div> </body> </html>
Código:
/* outmost wrapper element */ #scrollable { background-color:#efefef; border:1px solid #ddd; padding:10px 8px; width:550px; height:65px; } /* container for the scrollable items */ div.items { height:66px; margin-left:8px; float:left; width:478px !important; } /* single item */ div.items a { display:block; float:left; margin-right:8px; width:88px; height:66px; background:url(img/item.gif) 0 0 no-repeat; font-size:50px; color:#ccc; line-height:66px; text-decoration:none; text-align:center; cursor:pointer; } div.items a:hover { color:#999; } div.items a.active { background-position:-174px 0; color:#555; cursor:default; } /* next / prev buttons */ a.prev, a.next { display:block; width:30px; height:30px; float:left; background-repeat:no-repeat; margin:15px 0 0 0; } a.prev { background:url(img/button-left.gif); } a.prev:hover { background:url(img/button-left-over.gif); } a.next { background:url(img/button-right.gif); } a.next:hover { background:url(img/button-right-over.gif); } /* navigator */ div.navi { position:relative; top:-30px; left:310px; margin-left:-50px; width:50px; height:0px; } /* items inside navigator */ div.navi span { width:8px; height:8px; float:left; margin:3px; background:url(img/dots.png) 0 0 no-repeat; cursor:pointer; } div.navi span:hover { background-position:0 -8px; } div.navi span.active { background-position:0 -16px; }