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.
我想隐藏显示放大器轮播类型为“幻灯片”时的“上一个”和“下一个”控件。我还没有找到任何关于如何自定义“控件”属性的文档。
你可以通过使用 css 来做到这一点。只需添加
.amp-carousel-button { display: none }
在 amp-custom 样式标签中
这样做以针对幻灯片类型的轮播:
[type=slides] > .amp-carousel-button { display: none; }
如果您有其他想要保持其控件完整的轮播,这将很有帮助。