0

所以我有这样的内容:

<div class="somediv"</div>
<section id="section-one">
<p>some content</p>
</section>
<section id="section-two">
<p>some content</p>
</section>
<section id="section-three">
<p>some content</p>
</section>
</div>
<section id="section-four">
<p>some content</p>
</section>
</div>

...依此类推,直到第 12 节

我正在使用 jquery 插件液体滑块每个部分都是一个新的“幻灯片”我想以相对于当前月份的顺序显示幻灯片。我每个月都有一个部分(又名幻灯片),我希望滑块在 7 月的第 7 部分、10 月的第 10 部分等开始。

我该怎么做呢?我想有一个 jquery 或 php 解决方案,我对任何一个都开放。

4

2 回答 2

1

Liquid Slider 有一个选择第一张幻灯片的选项,使用当前日期传递值:

$('#slider-id').liquidSlider({
  firstPanelToLoad: new Date().getMonth()+1
});
于 2013-07-25T00:19:09.433 回答
0

你可以使用

new Date().getMonth()

它给出了一个介于 0(一月)和 11(十二月)之间的数字

于 2013-07-24T23:59:20.867 回答