AnythingSlider 返回面板编号“0”当 jQuery 工具选项卡更改时

发布于 2024-12-24 20:16:23 字数 1729 浏览 2 评论 0原文

我有 jQuery 工具选项卡 并在此选项卡栏的每个窗格中,我放置了一个 AnythingSlider。

一切正常,直到选项卡未更改。如果选项卡更改并更改回 Everythingslider 所在位置,则选择索引为“0”的幻灯片。

我只是希望当选项卡切换并切换回来时滑块不会改变...

这是我的代码:

<html>... <script>$(function () {

var slider1 = ['Start','Allgemein', 'Fancy', 'Status', 'Medikamente', 'Submit'];
function formatText(index, panel) {

    return slider1[index -1];
    //alert('hhh)';
}


$(function () {

    $('#slider1').anythingSlider({
        width : 800,          // Override the default CSS width
        easing: 'easeInOutExpo',
        autoPlay: false,
        buildArrows:false,
        navigationFormatter : formatText, // Format navigation labels with text
        hashTags: false,
        startPanel: '1',
    });
});

});}

查看控制器 Home 的脚本和脚本/操作名称 index

error_message;?> tabs; ?>

                    <!-- remove the space between tabs and panes -->
                    <br clear="all" />

                        <div id="tabbed-wrap">
                            <div id="another-div"><?php echo $this->panes; ?></div>
                        </div>

                </div>

$(函数() { $('#form_kind_alg').validator( { 输入事件:“更改” } ); $("#flowtabs").tabs("#flowpanes > div", { 历史记录: false });

I have jQuery Tools Tabs and in each of the panes of this tab bar, I have placed an AnythingSlider.

Everything works just fine till the tab is not changed. If the tabe is changed and changed back to where the anythingslider was, the slide with index '0' is selected.

I just want the slider to not change when the tabs are swtiched and switched back....

here is my code:

<html>... <script>$(function () {

var slider1 = ['Start','Allgemein', 'Fancy', 'Status', 'Medikamente', 'Submit'];
function formatText(index, panel) {

    return slider1[index -1];
    //alert('hhh)';
}


$(function () {

    $('#slider1').anythingSlider({
        width : 800,          // Override the default CSS width
        easing: 'easeInOutExpo',
        autoPlay: false,
        buildArrows:false,
        navigationFormatter : formatText, // Format navigation labels with text
        hashTags: false,
        startPanel: '1',
    });
});

});}

View script for controller Home and script/action name index

error_message;?>

tabs; ?>

                    <!-- remove the space between tabs and panes -->
                    <br clear="all" />

                        <div id="tabbed-wrap">
                            <div id="another-div"><?php echo $this->panes; ?></div>
                        </div>

                </div>

$(function() {
$('#form_kind_alg').validator(
{
inputEvent: 'change'
}
);
$("#flowtabs").tabs("#flowpanes > div", { history: false });

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

带刺的爱情 2024-12-31 20:16:23

尝试更新到 AnythingSlider 的最新版本:

AnythingSlider 从最后一个面板而不是第一个面板开始。我该如何修复它?

将 AnythingSlider 更新到版本 1.5.13+ 以解决此问题!发生此问题的原因是旧版本的 AnythingSlider 使用 scrollLeft 将幻灯片定位在视口中。当滑块隐藏时,就像在弹出窗口中、选项卡中或手风琴内部一样,无法设置 scrollLeft 值,它默认为零,即最后一个幻灯片克隆的位置。

摘自常见问题解答文档

Try updating to the latest version of AnythingSlider:

AnythingSlider is starting from the last panel instead of the first. How do I fix it?

Update AnythingSlider to version 1.5.13+ to fix this issue! This problem was happening because older versions of AnythingSlider used scrollLeft to position the slides in the view port. When the slider was hidden, as it would be in a popup, in a tab or inside an accordion, the scrollLeft value could not be set and it defaulted to zero, the position of the last slide clone.

Excerpt from the FAQ documentation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文