Orbit: Slider de imágenes con jQuery – Forex

AunqueS3Slider es un slideshow que funciona muy bien y ha tenido buena aceptación, son muchos quienes desean que este gadget cuente conflechas de desplazamiento para poder navegar por las imágenes de forma más inmediata.
Unslideshow que permite hacer eso esOrbit, que funciona a base dejQuery y muestra las imágenes con flechas de navegación. Pero además, en la parte superior izquierda indica cuál es la imagen que se está viendo, y del lado superior derecho un control de pausa e indicador del tiempo entre cada foto.


Una de las ventajas que me gusta de este slider es que el script cuenta con una versión corta, por lo que podremos colocar el script directo en la plantilla y así nos evitaremos colgarnos de un hosting.

Para empezar vamos a colocar los scripts que son lo que harán que funcione, así que vamos aDiseño | Edición de HTML y antes de/head pegamos lo siguiente:
script src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js' type='text/javascript'/

!--[if IE]
style type="text/css"
.timer { display: none !important; }
div.caption { background:transparent; filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000,endColorstr=#99000000);zoom: 1; }
/style
![endif]--

script type='text/javascript'
$(window).load(function() {
$('#featured').orbit({
advanceSpeed: 5000,
'bullets': true,
'timer' : true,
'animation' : 'horizontal-slide'
});
});
/script

script type='text/javascript'
//![CDATA[
/*
* jQuery Orbit Plugin 1.1
* www.ZURB.com/playground
* Copyright 2010, ZURB
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
*/

(function(e){e.fn.orbit=function(a){a=e.extend({animation:"fade",animationSpeed:800,advanceSpeed:4E3,startClockOnMouseOut:true,startClockOnMouseOutAfter:3E3,directionalNav:true,captions:true,captionAnimationSpeed:800,timer:false,bullets:false},a);return this.each(function(){function m(c){function g(){f.eq(h).css({"z-index":1});s=false}var h=b,k=c;if(h==k)return false;if(!s){s=true;if(c=="next"){b++;if(b==n)b=0}else if(c=="prev"){b--;if(b0)b=n-1}else{b=c;if(hb)k="next";else if(hb)k="prev"}a.bullets&&
x();if(a.animation=="fade"){f.eq(h).css({"z-index":2});f.eq(b).css({opacity:0,"z-index":3}).animate({opacity:1},a.animationSpeed,g);a.captions&&o()}if(a.animation=="horizontal-slide"){f.eq(h).css({"z-index":2});k=="next"&&f.eq(b).css({left:t,"z-index":3}).animate({left:0},a.animationSpeed,g);k=="prev"&&f.eq(b).css({left:-t,"z-index":3}).animate({left:0},a.animationSpeed,g);a.captions&&o()}if(a.animation=="vertical-slide"){f.eq(h).css({"z-index":2});k=="prev"&&f.eq(b).css({top:u,"z-index":3}).animate({top:0},
a.animationSpeed,g);k=="next"&&f.eq(b).css({top:-u,"z-index":3}).animate({top:0},a.animationSpeed,g);a.captions&&o()}}}var b=0,n=0,t,u,s,d=e(this).addClass("orbit"),f=d.find("img, a img");f.each(function(){var c=e(this),g=c.width();c=c.height();d.width(g);t=d.width();d.height(c);u=d.height();n++});f.eq(b).css({"z-index":3});if(a.timer){d.append('div class="timer"span class="mask"span class="rotator"/span/spanspan class="pause"/span/div');var j=e("div.timer"),p;if(j.length!=0){var C=
a.advanceSpeed/180,v=e("div.timer span.rotator"),y=e("div.timer span.mask"),z=e("div.timer span.pause"),l=0,A,w=function(){p=true;z.removeClass("active");A=setInterval(function(){var c="rotate("+l+"deg)";l+=2;v.css({"-webkit-transform":c,"-moz-transform":c,"-o-transform":c});if(l180){v.addClass("move");y.addClass("move")}if(l360){v.removeClass("move");y.removeClass("move");l=0;m("next")}},C)},q=function(){p=false;clearInterval(A);z.addClass("active")};w();j.click(function(){p?q():w()});if(a.startClockOnMouseOut){var B;
d.mouseleave(function(){B=setTimeout(function(){p||w()},a.startClockOnMouseOutAfter)});d.mouseenter(function(){clearTimeout(B)})}}}if(a.captions){d.append('div class="caption"span class="orbit-caption"/span/div');var r=d.children("div.caption").children("span").addClass("orbit-caption").show(),o=function(){var c=f.eq(b).attr("rel"),g=e("#"+c).html(),h=r.height()+20;r.attr("id","#"+c).html(g);g?r.parent().stop().animate({bottom:0},a.captionAnimationSpeed):r.parent().stop().animate({bottom:-h},
a.captionAnimationSpeed)};o()}if(a.directionalNav){d.append('div class="slider-nav"span class="right"Right/spanspan class="left"Left/span/div');j=d.children("div.slider-nav").children("span.left");var D=d.children("div.slider-nav").children("span.right");j.click(function(){a.timer&&q();m("prev")});D.click(function(){a.timer&&q();m("next")})}if(a.bullets){d.append('ul class="orbit-bullets"/ul');var E=e("ul.orbit-bullets");for(i=0;in;i++){j=e("li"+i+"/li");e("ul.orbit-bullets").append(j);
j.data("index",i);j.click(function(){a.timer&&q();m(e(this).data("index"))})}var x=function(){E.children("li").removeClass("active").eq(b).addClass("active")};x()}})}})(jQuery);
//
/script
Ahora es turno de los estilos, así que antes de/b:skin pegamos esto:
/* ORBIT SLIDER
----------------------------------------------- */
#featured {height: 1px; width: 1px; overflow: hidden;}
div.orbit {
width: 1px;
height: 1px;
position: relative;
overflow: hidden;
}

div.orbit img {
position: absolute;
top: 0;
left: 0;
}
div.orbit a img {border: none;}

div.timer {
width: 40px;
height: 40px;
overflow: hidden;
position: absolute;
top: 10px;
right:10px;
opacity: .6;
cursor: pointer;
z-index: 1001;
}

span.rotator {
display: block;
width: 40px;
height: 40px;
position: absolute;
top: 0;
left: -20px;
background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg7J1vZB2hB0St4xbfjXBQXEd3p_pulp8GTjEtO7rkU6oaTJAvQ7cXzif6yCOEUVCi-pknwJTVp5FNRU1-LZQSPO1Y_rFKrZ0Ycsu-IMITrtmhGSDCMm6HPbuFtBtMs5JQqAlOTnQZ9UGMY/s1600/rotator-black.png);
background-repeat: no-repeat;
z-index: 3;
}

span.mask {
display: block;
width: 20px;
height: 40px;
position: absolute;
top: 0;
right: 0;
z-index: 2;
overflow: hidden;
}

span.rotator.move {left: 0;}
span.mask.move {
width: 40px;
left: 0;
background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh0nN5yYa_Yp51umt2NXaTVNGiTeob415VWewsC8zQKvR17sUaOzIsIMzuZ8qxNGlso0mr4jM5RjJjJQU1_w2ATnZ_1D-nvVFxToXQqABdKyBtoaLQL-YYfhfAhRxsDH30t3BlDOwoROcqT/s1600/timer-black.png);
background-repeat: repeat;
background-position: 0px 0px;
}

span.pause {
display: block;
width: 40px;
height: 40px;
position: absolute;
top: 0;
left: 0px;
background-image: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEitMq0nl6OR1lzC5voRnF2DjoXK4Ef9U41yIKouOEXmm2WwA2FtI492ln0gI5qkUJiMs8ZSL080OaxbT_R3_ODg-i02MueKuhIsK9sySWkLgKmx3GT6OUwP4Rw4sW0pBvBoY9BOKlWteyy0/s1600/pause-black.png);
background-repeat: no-repeat;
z-index: 4;
opacity: 0;
}

div.timer:hover span.pause,
span.pause.active,
div.timer:hover span.pause.active { opacity: 1; }

div.caption {
background: #000;
background: rgba(0,0,0,.6);
width: 100%;
z-index: 1000;
position: absolute;
bottom:-100px;
color: #fff;
padding: 8px 0;
text-align: center;
}

div.caption span {
padding: 0 10px;
font-size: 14px;
text-shadow: 0px 1px 0px rgba(0,0,0,.8);
margin: 0;
}
.orbit-caption { display: none; }

div.orbit:hover div.slider-nav { display: block; }
div.slider-nav { display: none; }
div.slider-nav span {
width: 33px;
height: 33px;
text-indent: -9999px;
position: absolute;
z-index: 1000;
top: 43%;
cursor: pointer;
}

div.slider-nav span.right {
background-image: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgO6ElgVpncL0k1Aduy6iG9N7rWrm0PUcjPswSsQ_q-rEMoJLuMablJ9GNRb62OGJiYyo9odyPUkM2bweMn7YDc4w2jqnuuzZbG9WIpUqz2WOIX1lqG9HTVg4DhxsAxvTHQwNvRKB2kDZyi/s1600/right-arrow.png);
right: 10px;
}
div.slider-nav span.left {
background-image: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgc53I93w02Yo_-HfPKt8AkFkrBSvLSPYLQMn2-tTZKxphkn2q3ck512ymnSTr8jrTlPAfbpI3jiiw2TAzvOS1hy8ffV4NbIjtmPQKHZV9H0ey09qxjWfeebXY5bhvUxIVFlXAiNoM03j2g/s1600/left-arrow.png);
left: 10px;
}

.orbit-bullets {
position: absolute;
z-index: 1000;
list-style: none;
top: 10px;
left: 7px;
margin: 0;
padding: 0;
}

.orbit-bullets li {
float: left;
margin-left: 5px;
cursor: pointer;
color: #999;
text-indent: -9999px;
background-image: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhGowdLam4LIv7LPjpTPgXQBhr0D9QY_GZinQ3NfQChPlsrHffjBErzo_52WZEeB-m-Qs3brJMM2fvAA_yUr9NPKUF3wD_uoe7yjYcP1EvnVnsmdJoCIcBPlCRrTxPcBEi00g6s170R7oNw/s1600/bullets.png);
background-repeat: no-repeat;
background-position: 0 0;
width: 7px;
height: 7px;
overflow: hidden;
}

.orbit-bullets li.active { color: #222; background-position: -7px 0; }
Ya por último usaremos el código que mostrará las imágenes, así que enDiseño | Elementos de la página | Añadir un gadget | HTML/Javascript pegamos este código:
div id='featured'

a href='URL del enlace'imgrel='foto1' src="URL de la imagen" style='width:490px; height:238px;'//a
span class='orbit-caption'id='foto1'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque varius augue sit amet magna condimentum dictum./span

a href="URL del enlace"imgrel='foto2' src="URL de la imagen" style='width:490px; height:238px;'//a
span class='orbit-caption'id='foto2'Este es un ejemplo de la descripción con enlaces: a href='URL del enlace' style='color: #fff';'Ciudad Blogger/a/span

a href="URL del enlace"imgrel='foto3' src="URL de la imagen" style='width:490px; height:238px;'//a
span class='orbit-caption'id='foto3' style='text-align:center;'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque varius augue sit amet magna condimentum dictum./span

a href='URL del enlace'imgrel='foto4' src="URL de la imagen" style='width:490px; height:238px;'//a
span class='orbit-caption'id='foto4'Este es un ejemplo de la descripción con enlaces: a href='URL del enlace' style='color: #fff';'Ciudad Blogger/a/span

/div
Esta última parte es la que contiene las imágenes, los enlaces y los textos descriptivos de cada imagen.
Lo que está encolor rojo son las URLs de los enlaces y de las imágenes.

Dentro de cada código de imagen están especificadas las medidas que tendrá cada imagen, pero puedes modificar esos tamaños a tu gusto, eso se hace enwidth (ancho) yheight (alto), recuerda que todas las fotos deben tener el mismo tamaño especificado.

Lo que está encolor verde es el texto descriptivo de cada imagen.
Pero atención, no basta con poner el texto descriptivo para que éste aparezca, sino que, cada descripción tiene un identificador (id), éste identificador debe ser único. Para que el texto descriptivo aparezca deberá ponerse dentro del código de la imagen el atributo rel + el nombre del identificador.
Por ejemplo, en el texto descriptivo de la primera imagen aparece su id que es,id="foto1"y dentro del código de la imagen aparece el atributo rel con el nombre del id, o sea,rel="foto1"

Como ves no es nada complicado, sólo hay que ponerle un poco de atención a las descripciones de las imágenes, pero fuera de eso será un slider sencillo de utilizar.
Y bueno, aunque está probado en todos los navegadores y en Internet Explorer funciona, el control de pausa no se muestra en ese navegador por los fallos que tiene, de igual modo es posible que el desplazamiento entre cada imagen no se vea con un efecto tan suave como se vería con otro navegador de mayor calidad como Mozilla Firefox o Chrome.

ACTUALIZACIÓN: En el primer código, en la línea azuladvanceSpeed: 5000, se puede modificar la velocidad de las transiciones entre cada imagen, un número más alto hará que las imágenes tarden más tiempo entre cada transición.

Si lo prefieres puedes descargar el script y subirlo a un alojamiento en caso de que no quieras tenerlo directo en tu plantilla.

Enlace | Descargar script

injury lawyer houston tx CAR INSURANCE QUOTES PA mesothelioma law suits Online casino mesothelioma attorney assistance Social media management Italian cooking school Casino reviews fortis health insurance temporary paperport promotional code Gas/Electricity Nunavut Culture Cheap Domain Registration Hosting Cheap Car Insurance for Ladies Casino HARDDRIVE DATA RECOVERY SERVICES online criminal justice degree Seo company adverse credit remortgage Royalty Free Images Stock selling structured settlement Service business software MESOTHELIOMA LAW FIRM Donate a Car in Maryland caraccidentlawyer buying an annuity calculator structured annuity settlement DONATING USED CARS TO CHARITY Criminal lawyer business voip solutions Business management software illinois mesothelioma lawyer Car Insurance Companies Donate a car in Maryland New social media platforms Online Colleges Php programmers for hire Mobile casino business administration masters Criminal Defense Attorneys Florida MOTOR REPLACEMENTS PHD IN COUNSELING EDUCATION Dwi lawyer Make money online Australia Webex Costs Auto Mobile Insurance Quote bus accident attorneys Car Insurance Quotes PA CHEAP DOMAIN REGISTRATION HOSTING buyer of structured settlement annuity VIRTUAL DATA ROOMS new mexico mesothelioma lawyer car accident lawyers los angeles asbestos mesothelioma lawsuit Car Insurance Quotes Neuson Html email Seo companies Best Criminal Lawyers in Arizona car accident lawyer michigan canada personals yahoo accident lawyers in los angeles PAPERPORT PROMOTIONAL CODE business voice mail service bus accident attorney los angeles Forensics online course Live casino DUI lawyer Hire php developers Hire php programmers Personal Injury Lawyer Criminal defense lawyer Psd to html california law lemon motor insurance quotes Holland Michigan College Seo services google affiliate purchase structured settlements Online Christmas cards Online Classes Cheap domain registration hosting small business administration sba Donate Car for Tax Credit CRIMINAL DEFENSE ATTORNEYS FLORIDA alabama mesothelioma lawyer Christmas cards WEBEX COSTS How to Donate A Car in California phd in counseling education car insurance companies Computer science classes online Attorney royalty free images stock structured settlement annuity companies Donate Your Car Sacramento Hire php developer Bankruptcy lawyer Car Insurance Quotes Colorado Business finance group Php programmers WordPress theme designers Best social media platforms for business Psd to WordPress car accident lawyers west palm beach Online classes best accident attorneys Custom WordPress theme designer Futuristic Architecture Social media platforms for business Photo Christmas cards houston motorcycle accident lawyer structured settlement company DONATE YOUR CAR FOR MONEY business email web hosting

Share: