我想删除Anythingslider中的“开始/停止”按钮,但保留导航的其余部分

时间:2010-12-06 17:57:20

标签: javascript html anythingslider

我正在使用AnythingSlider(有趣的玩具)作为网站,其中面板是网站的页面。因此,我想禁用并删除“开始/停止”按钮,但保留导航的其余部分。我的印象是它是导航的一部分,无法选择。如果这是正确的,我该怎么做?

实际上,我也希望将导航移动到面板的右上角。

干杯

4 个答案:

答案 0 :(得分:3)

完全删除“开始/停止”按钮:

buildStartStop: false

(没有隐藏,没有技巧,只是删除)

答案 1 :(得分:2)

来自此处的示例:http://css-tricks.com/examples/AnythingSlider/

第二个例子没有按钮。如果您阅读来源:

        $('#slider2').anythingSlider({
            width               : 600,       // if resizeContent is false, this is the default width if panel size is not defined
            height              : 350,       // if resizeContent is false, this is the default height if panel size is not defined
            resizeContents      : false,     // If true, solitary images/objects in the panel will expand to fit the viewport
            autoPlay            : false,     // This turns off the entire slideshow FUNCTIONALY, not just if it starts running or not
            navigationFormatter : formatText // Format navigation labels with text
        })

查看autoPlay。它显然负责启动/停止功能,包括按钮。

答案 2 :(得分:1)

隐藏播放/停止按钮,但仍然使用自动播放:

startText           : '',
stopText            : '',

答案 3 :(得分:0)

召唤狗。这是一个选择:

autoPlay : false,