0

我在 themeforest 的 clickr 登陆页面上有 Slider Cycle(我已经购买了它)。

我将滑块添加到效果很好的图像的标题,但是 - 我需要修复一件事:标题宽度!

标题是相同的标题,不会随文本的宽度而变化。用短文本看到大宽度,这对眼睛不好。

这是JS:

// -- Cycle Slider Settings --

$(document).ready(function(){
    $('#slider').cycle({
        fx: 'scrollHorz',
        before: onBeforeCallbackFunction,
        after: onAfterCallbackFunction,
        speed:  1300, 
        timeout: 4000,
        easing:'easeInOutBack',     
        sync:1,
        pause:1,        
        pager:'#pager',     
        // callback fn that creates a thumbnail to use as pager anchor 
        pagerAnchorBuilder: function(idx, slide) { 
            return '<li><a href="#"></a></li>'; 
        }
    });
})

function onBeforeCallbackFunction(curr, next, opts) {
    //slide out the caption
    $('.caption').animate({ right: -220}, 300);
    $('.caption one').animate({ right: -120}, 200);
}

function onAfterCallbackFunction(curr, next, opts) {
    var index = opts.currSlide; //zero based index of slides
    // adjust prev/next visibility
    $('#prev')[index == 0 ? 'hide' : 'show']();
    $('#next')[index == opts.slideCount - 1 ? 'hide' : 'show']();
     //  slide in the caption  
    $('.caption').eq(index).animate({ right: 0}, 600);
    console.log(index)
}

这是CSS:

/* -- 4. SLIDER -- */

.caption{ position:absolute; top:75%; background: #333; color:#FFF; font-size:14px; width:200px;height:1em; padding:.5em 5px 10px 5px; right:-220px; z-index:20}

.caption one{ position:absolute; top:75%; background: #333; color:#FFF; font-size:14px; width:100px;height:1em; padding:.5em 5px 10px 5px; right:-120px; z-index:20}

.slider_wrap { position:relative; overflow:hidden; margin:0px; padding:0px; width:392px; height:274px; background:#fbfdff; border:1px solid #e0e4ea; padding:7px; border-radius:6px; -moz-border-radius:6px; -webkit-border-radius:6px; -khtml-border-radius:6px }
#slider { position:relative; overflow:hidden; margin:0px; padding:0px; list-style:none }
#slider li { float:left; width:392px; height:274px; overflow:hidden }
#pager { position:relative; overflow:hidden; text-align:center; margin:0px; padding:12px 0px 0px; list-style:none; z-index:999; line-height:0px; background:url(images/slider_shadow.png) 50% 0px no-repeat }
#pager li { display:inline-block; width:10px; margin:0px 2px }
#pager li a { display:block; width:10px; height:11px; background:url(images/pager.png) -14px 0px no-repeat }
#pager li.activeSlide a { background-position:0px 0px }

请参阅此处的页面:Clickr Slider Cycle

或者,如果您愿意:JSfiddle

4

1 回答 1

1

所以问题来自于集合width=200px;。为了使其可调整,请在以下代码中找到style.css

.caption{ ..... width:200px; }

并将其更改为width: auto;. 这应该使标题宽度与文本一样宽。

于 2012-12-09T17:52:00.313 回答