Ver Mensaje Individual
  #4 (permalink)  
Antiguo 25/04/2011, 17:11
Avatar de pao01
pao01
Colaborador
 
Fecha de Ingreso: junio-2008
Mensajes: 1.875
Antigüedad: 15 años, 10 meses
Puntos: 351
Respuesta: Campos personalizados desde páginas.

Código Javascript:
Ver original
  1. //Step Carousel Viewer: By Dynamic Drive, at http://www.dynamicdrive.com
  2. //** Created: March 19th, 08'
  3. //** Aug 16th, 08'- Updated to v 1.4:
  4.     //1) Adds ability to set speed/duration of panel animation (in milliseconds)
  5.     //2) Adds persistence support, so the last viewed panel is recalled when viewer returns within same browser session
  6.     //3) Adds ability to specify whether panels should stop at the very last and first panel, or wrap around and start all over again
  7.     //4) Adds option to specify two navigational image links positioned to the left and right of the Carousel Viewer to move the panels back and forth
  8.  
  9. //** Aug 27th, 08'- Nav buttons (if enabled) also repositions themselves now if window is resized
  10.  
  11. //** Sept 23rd, 08'- Updated to v 1.6:
  12.     //1) Carousel now stops at the very last visible panel, instead of the last panel itself. In other words, no more white space at the end.
  13.     //2) Adds ability for Carousel to auto rotate dictated by the new parameter: autostep: {enable:true, moveby:1, pause:3000}
  14.     //2i) During Auto Rotate, Carousel pauses onMouseover, resumes onMouseout. Clicking Carousel halts auto rotate.
  15.  
  16. //** Oct 22nd, 08'- Updated to v 1.6.1, which fixes functions stepBy() and stepTo() not stopping auto stepping of Carousel when called.
  17.  
  18. var stepcarousel={
  19.     ajaxloadingmsg: '<div style="margin: 1em; font-weight: bold"><img src="ajaxloadr.gif" style="vertical-align: middle" /> Fetching Content. Please wait...</div>', //customize HTML to show while fetching Ajax content
  20.     defaultbuttonsfade: 0.4, //Fade degree for disabled nav buttons (0=completely transparent, 1=completely opaque)
  21.     configholder: {},
  22.  
  23.     getCSSValue:function(val){ //Returns either 0 (if val contains 'auto') or val as an integer
  24.         return (val=="auto")? 0 : parseInt(val)
  25.     },
  26.  
  27.     getremotepanels:function($, config){ //function to fetch external page containing the panel DIVs
  28.         config.$belt.html(this.ajaxloadingmsg)
  29.         $.ajax({
  30.             url: config.contenttype[1], //path to external content
  31.             async: true,
  32.             error:function(ajaxrequest){
  33.                 config.$belt.html('Error fetching content.<br />Server Response: '+ajaxrequest.responseText)
  34.             },
  35.             success:function(content){
  36.                 config.$belt.html(content)
  37.                 config.$panels=config.$gallery.find('.'+config.panelclass)
  38.                 stepcarousel.alignpanels($, config)
  39.             }
  40.         })
  41.     },
  42.  
  43.     getoffset:function(what, offsettype){
  44.         return (what.offsetParent)? what[offsettype]+this.getoffset(what.offsetParent, offsettype) : what[offsettype]
  45.     },
  46.  
  47.     getCookie:function(Name){
  48.         var re=new RegExp(Name+"=[^;]+", "i"); //construct RE to search for target name/value pair
  49.         if (document.cookie.match(re)) //if cookie found
  50.             return document.cookie.match(re)[0].split("=")[1] //return its value
  51.         return null
  52.     },
  53.  
  54.     setCookie:function(name, value){
  55.         document.cookie = name+"="+value
  56.     },
  57.  
  58.     fadebuttons:function(config, currentpanel){
  59.         config.$leftnavbutton.fadeTo('fast', currentpanel==0? this.defaultbuttonsfade : 1)
  60.         config.$rightnavbutton.fadeTo('fast', currentpanel==config.lastvisiblepanel? this.defaultbuttonsfade : 1)
  61.     },
  62.  
  63.     addnavbuttons:function(config, currentpanel){
  64.         config.$leftnavbutton=$('<img src="'+config.defaultbuttons.leftnav[0]+'">').css({zIndex:50, position:'absolute', left:config.offsets.left+config.defaultbuttons.leftnav[1]+'px', top:config.offsets.top+config.defaultbuttons.leftnav[2]+'px', cursor:'hand', cursor:'pointer'}).attr({title:'Previous project '}).appendTo('body')
  65.         config.$rightnavbutton=$('<img src="'+config.defaultbuttons.rightnav[0]+'">').css({zIndex:50, position:'absolute', left:config.offsets.left+config.$gallery.get(0).offsetWidth+config.defaultbuttons.rightnav[1]+'px', top:config.offsets.top+config.defaultbuttons.rightnav[2]+'px', cursor:'hand', cursor:'pointer'}).attr({title:'Next project'}).appendTo('body')
  66.         config.$leftnavbutton.bind('click', function(){ //assign nav button event handlers
  67.             stepcarousel.stepBy(config.galleryid, -config.defaultbuttons.moveby)
  68.         })
  69.         config.$rightnavbutton.bind('click', function(){ //assign nav button event handlers
  70.             stepcarousel.stepBy(config.galleryid, config.defaultbuttons.moveby)
  71.         })
  72.         if (config.panelbehavior.wraparound==false){ //if carousel viewer should stop at first or last panel (instead of wrap back or forth)
  73.             this.fadebuttons(config, currentpanel)
  74.         }
  75.         return config.$leftnavbutton.add(config.$rightnavbutton)
  76.     },
  77.  
  78.     stopautostep:function(config){
  79.         clearTimeout(config.steptimer)
  80.         clearTimeout(config.resumeautostep)
  81.     },
  82.  
  83.     alignpanels:function($, config){
  84.         var paneloffset=0
  85.         config.paneloffsets=[paneloffset] //array to store upper left offset of each panel (1st element=0)
  86.         config.panelwidths=[] //array to store widths of each panel
  87.         config.$panels.each(function(index){ //loop through panels
  88.             var $currentpanel=$(this)
  89.             $currentpanel.css({float: 'none', position: 'absolute', left: paneloffset+'px'}) //position panel
  90.             $currentpanel.bind('click', function(e){return config.onpanelclick(e.target)}) //bind onpanelclick() to onclick event
  91.             paneloffset+=stepcarousel.getCSSValue($currentpanel.css('marginRight')) + parseInt($currentpanel.get(0).offsetWidth || $currentpanel.css('width')) //calculate next panel offset
  92.             config.paneloffsets.push(paneloffset) //remember this offset
  93.             config.panelwidths.push(paneloffset-config.paneloffsets[config.paneloffsets.length-2]) //remember panel width
  94.         })
  95.         config.paneloffsets.pop() //delete last offset (redundant)
  96.         var addpanelwidths=0
  97.         var lastpanelindex=config.$panels.length-1
  98.         config.lastvisiblepanel=lastpanelindex
  99.         for (var i=config.$panels.length-1; i>=0; i--){
  100.             addpanelwidths+=(i==lastpanelindex? config.panelwidths[lastpanelindex] : config.paneloffsets[i+1]-config.paneloffsets[i])
  101.             if (config.gallerywidth>addpanelwidths){
  102.                 config.lastvisiblepanel=i //calculate index of panel that when in 1st position reveals the very last panel all at once based on gallery width
  103.             }
  104.         }
  105.         config.$belt.css({width: paneloffset+'px'}) //Set Belt DIV to total panels' widths
  106.         config.currentpanel=(config.panelbehavior.persist)? parseInt(this.getCookie(window[config.galleryid+"persist"])) : 0 //determine 1st panel to show by default
  107.         config.currentpanel=(typeof config.currentpanel=="number" && config.currentpanel<config.$panels.length)? config.currentpanel : 0
  108.         if (config.currentpanel!=0){
  109.             var endpoint=config.paneloffsets[config.currentpanel]+(config.currentpanel==0? 0 : config.beltoffset)
  110.             config.$belt.css({left: -endpoint+'px'})
  111.         }
  112.         if (config.defaultbuttons.enable==true){ //if enable default back/forth nav buttons
  113.             var $navbuttons=this.addnavbuttons(config, config.currentpanel)
  114.             $(window).bind("load resize", function(){ //refresh position of nav buttons when page loads/resizes, in case offsets weren't available document.oncontentload
  115.                 config.offsets={left:stepcarousel.getoffset(config.$gallery.get(0), "offsetLeft"), top:stepcarousel.getoffset(config.$gallery.get(0), "offsetTop")}
  116.                 config.$leftnavbutton.css({left:config.offsets.left+config.defaultbuttons.leftnav[1]+'px', top:config.offsets.top+config.defaultbuttons.leftnav[2]+'px'})
  117.                 config.$rightnavbutton.css({left:config.offsets.left+config.$gallery.get(0).offsetWidth+config.defaultbuttons.rightnav[1]+'px', top:config.offsets.top+config.defaultbuttons.rightnav[2]+'px'})
  118.             })
  119.         }
  120.         if (config.autostep && config.autostep.enable){ //enable auto stepping of Carousel?    
  121.             var $carouselparts=config.$gallery.add(typeof $navbuttons!="undefined"? $navbuttons : null)
  122.             $carouselparts.bind('click', function(){
  123.                 stepcarousel.stopautostep(config)
  124.                 config.autostep.status="stopped"
  125.             })
__________________
Entre más estrecha la mente, más grande la boca.- Ted Cook
Autosconarte-Blog