EL PROBLEMA ESTÁ EN QUE EL EFECTO ZOOM DE LA GALERIA FUNCIONA CUANDO DESACTIVO O QUITO EL CUSTOM.JS DEL BANNER ANIMADO, PERO CUANDO ACTIVO O AGREGO AL HTML EL CUSTOM.JS FUNCIONA EL BANNER PERO NO EL ZOOM DE LA GALERIA.
AQUI LES COLOCO EL ARCHIVO:
Código Javascript:
Ver original
/* * Used on : OwlTemplates.com Theme */ /* Cufon replacement configuration begins */ Cufon.replace('h2, h3, .title-1', { fontFamily: 'Helvetica LT Std', hover: 'true' }); /* Cufon replacement configuration endss */ /* Purchase Now button fadein effect begins */ $(document).ready(function () { //Append a div with hover class to all the LI $('#purchase-now li').append('<div class="hover"><\/div>'); $('#purchase-now li').hover( //Mouseover, fadeIn the hidden hover class function() { $(this).children('div').fadeIn('1000'); }, //Mouseout, fadeOut the hover class function() { $(this).children('div').fadeOut('1000'); }).click (function () { //Add selected class if user clicked on it $(this).addClass('selected'); }); }); /* Purchase Now button fadein effect ends */ /* Carousel begins */ $(function() { $(".carousel").jCarouselLite({ btnNext: ".next", btnPrev: ".prev" }); }); /* Carousel ends */ /* header slider begins */ var $asj = jQuery.noConflict(); $asj(function () { function formatText(index, panel) { var titles = new Array();titles[0+1]="1";titles[1+1]="2";titles[2+1]="3";titles[3+1]="4";titles[4+1]="5";return titles[index]; } $asj('.anythingSlider').anythingSlider({ easing: "easeInOutExpo", autoPlay: true, delay: 3000, showStartStop: false, startStopped: false, animationTime: 600, hashTags: true, buildNavigation: true, pauseOnHover: true, startText: "Start", stopText: "Stop", navigationFormatter: formatText }); }); /* header slider ends */