轮播问题

发布于 2024-10-07 05:06:18 字数 332 浏览 3 评论 0原文

beulahprint.ie

我正在尝试向我的网站添加一个简单的轮播。我是一名图形设计师,对所有编码业务都是新手。我有一个为 #specialoffers div 工作的轮播。但我想去掉上一个和下一个按钮,我该怎么做?

另外,如果我将方向更改为水平,我的轮播可以工作,但图像 2、3 和 4 是不可见的,这是为什么?

最后,我希望将分页编号 1、2、3、4 放入带有翻转的小框中。我该怎么做?我什至不知道它们一开始是如何到达那里的,因为它们不在我的 html 正文代码中。如何将它们放置在特别优惠 div 中我想要的任何位置?

抱歉我的无知,仍在学习:)

干杯, 科尔姆

beulahprint.ie

I'm trying to add a simple carousel to my site. I'm a graphic designer, new to all this coding business. I have a carousel working for the #specialoffers div. But I want to get rid of the previous and next buttons, how do i do this?

Also, if I change the direction to horizontal, my carousel works, but images 2, 3 and 4 are invisible, why is this?

Finally, I would love to get my pagination numbers 1, 2, 3, 4 into little boxes with rollovers. How would I do this? I don't even know how they got there in the first place cos theyre not in my html body code. How would position them wherever I want within the special offers div?

Sorry for my ignorance, still learning :)

Cheers,
Colm

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

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

发布评论

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

评论(1

唔猫 2024-10-14 05:06:18

要隐藏下一个和上一个按钮,您可以在加载 jquery 和轮播脚本后将其放在页面上:

$(function() {
    $('.next').hide();
    $('.prev').hide();
})

当然,这是假设下一个和上一个按钮有

class="next"

and

class="prev"

respectively on the appropriate HTML tag.

to hide the next and previous buttons you could put this on the page after you have jquery and your carousel script loaded:

$(function() {
    $('.next').hide();
    $('.prev').hide();
})

of course this is assuming that the next and previous buttons have

class="next"

and

class="prev"

respectively on the appropriate HTML tag.

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