jQuery 滑块作为时间线
我刚刚完成了 jQuery 手风琴与 jQuery 滑块的合并。 即
显示3张图片。用户可以使用 PREV
或 NEXT
按钮查看下一个/上一个 3 个图像。他们还可以使用滑块浏览所有图像。
下一步是使这个滑块看起来像时间线。左侧需要从 1970 年开始,到 2010 年结束。对于每个项目(在本例中一个项目是一组 3 个图像),我需要它在时间轴上显示日期。
即:
我知道我可以创建一个日期宽度合适的图像,但理想情况下这需要是动态的,所以可以放入更多项目,时间线会自动更新。
I have just finished incorporating a jQuery accordian with a jQuery Slider.
I.e.
3 pictures are displayed. The user can either use PREV
or NEXT
buttons to view the next/prev 3 images. They can also navigate through all the images with the slider.
The next step is to make this slider look like a timeline. The left hand side needs to start at 1970 and finish at 2010. For each item (an item is a set of 3 images in this case) I need it to show a date on the timeline.
i.e:
I know I could create an image with the dates the right width apart but idealy this needs to be dynamic so more items can be put in and the timeline self updates.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在较高级别上,以下操作应该有效:
[标签总数] - 1
,即可得到分配给每个标签的像素总数。float:left
样式。clear: Both
样式的空 div。这是一个基本示例:
CSS
标记
JavaScript
At a high level, the following should work:
[total number of labels] - 1
to get the total number of pixels to allocate to each label.float:left
style.clear: both
style.Here is a basic example:
CSS
Markup
JavaScript