如何使用 jQuery GalleryView 插件删除它们?

发布于 2024-09-10 18:18:24 字数 199 浏览 4 评论 0原文

我正在使用 jQuery GalleryView 插件,我想删除过渡时沿着缩略图滑动的箭头发生。

我不知道如何删除它(尝试使用“nav_theme”配置选项但没有运气)。

有人知道这是怎么做到的吗?

I'm using the jQuery GalleryView plugin, and I want to remove the arrow that slides along the thumbnails when the transitions take place.

I can't figure out how to remove this (tried using the 'nav_theme' configuration option but no luck).

Does anybody know how this is done?

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

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

发布评论

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

评论(1

因为看清所以看轻 2024-09-17 18:18:24

尝试将其添加到您的 CSS 中:

#pointer {
    display: none;
}

或者如果您愿意,可以在 javascript 中执行此操作:

$('#pointer').hide();

您也可以尝试:

$('#pointer').remove();

默认情况下,指针似乎有一个 ID #pointer,因此其中之一应该可以为您完成此操作。

Try adding this to your CSS:

#pointer {
    display: none;
}

Or do it in javascript if you want:

$('#pointer').hide();

You could also try:

$('#pointer').remove();

The pointer seems to have an ID of #pointer by default, so one of these should do it for you.

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