停止 jQuery 循环设置 display:none;

发布于 2024-12-04 16:25:37 字数 913 浏览 0 评论 0原文

我正在创建一个小游戏,用户从一组项目中选择,然后选择选定的项目并选择一个。

我正在使用jQuery Cycle( http://jquery.malsup.com/cycle/ )主动画并选择一个随机项目(使用随机订单功能和自定义动画)。

但是,我对项目的动画方式意味着我需要它们在动画时保持可见 - 它们绝对被定位。

所以这是一个问题: 是否有一种方法可以阻止jQuery循环应用 显示:none; 在开始之前所有项目?

我不介意修改必要时要执行此操作的原始脚本。

$('#item-container').cycle({ 
    fx: 'custom',
    cssBefore:{
        left: 0,
        top: 0,
        display: 'block',
        zIndex: 1
    },
    animIn: {
        left: 200,
        top: 200
    },
    animOut: {
        left: 0,
        top: 0
    },
        cssAfter:{
        zIndex: -40,
        display: 'block'
    },
    speed:  400,
    timeout: 400,
    random: 1,
    autostop: 1,
    autostopCount: 25,
    continuous: 1,
    slideExpr: 'div.selected'
});

谢谢!

I'm creating a little game where a user selects from a set of items then the selected items are shuffled and one is chosen.

I'm using jQuery cycle (http://jquery.malsup.com/cycle/) to run the main animation and select a random item (using the random order feature and a custom animation).

However, the way I'm animating the items means I need them to all remain visible while they're animating - they're all positioned absolutely.

So here's the question:
Is there a way to stop jQuery cycle from applying display: none; to all of the items before it starts?

I don't mind modifying the original script to do this if necessary.

$('#item-container').cycle({ 
    fx: 'custom',
    cssBefore:{
        left: 0,
        top: 0,
        display: 'block',
        zIndex: 1
    },
    animIn: {
        left: 200,
        top: 200
    },
    animOut: {
        left: 0,
        top: 0
    },
        cssAfter:{
        zIndex: -40,
        display: 'block'
    },
    speed:  400,
    timeout: 400,
    random: 1,
    autostop: 1,
    autostopCount: 25,
    continuous: 1,
    slideExpr: 'div.selected'
});

Thanks!

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

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

发布评论

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

评论(1

鸠书 2024-12-11 16:25:37

尝试在 CSS 中添加 !important 。通常,内联CSS(例如,像cycle插件设置的那样)将覆盖样式表中的CSS。但是,如果您使用 !important,则它将优先。

Try adding !important in your CSS. Normally, inline css (for instance, like that set by the cycle plugin) will override css in your stylesheet. However, if you use !important, that will take precedence.

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