Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 jQuery GalleryView插件,并且我想在转换发生时删除沿着缩略图滑动的箭头。
我不知道如何删除它(尝试使用 'nav_theme' 配置选项但没有运气)。
有人知道这是怎么做到的吗?
尝试将此添加到您的 CSS 中:
#pointer { display: none; }
或者,如果您愿意,可以在 javascript 中执行:
$('#pointer').hide();
你也可以试试:
$('#pointer').remove();
默认情况下,该指针的 ID 似乎为#pointer,因此其中之一应该为您完成。
#pointer