用jquery(而不是mootools)模拟这个滑块效果【水平手风琴效果】
我可以使用 javascript 和其他所有东西,但在重新发明轮子之前,我想知道是否已经有类似的 jquery 插件,因为我想使用该框架而不是 mootools。
我对钱没有问题,特别是对于 5 欧元的模板,但我真的想使用 jquery,因为我研究了它而不是 mootools。
模板: http://www.globbersthemes.com/demo/upsilum/
编辑1:我更改了标题,以供知道此类效果的正确名称的人将来参考,谢谢大家。
I can use javascript and everything else, but before reinventing the wheel, I would like to know if there is already a similar plugin for jquery because I would like to use that framework and not mootools.
I don't have problems with money, expecially for a 5€ template, but really I would like to use jquery because I studied it and not mootools.
The template: http://www.globbersthemes.com/demo/upsilum/
EDIT 1: I changed the title for future references for people that know the correct name of this type of effect, thanks to everyone.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我一直喜欢 jquery 工具选项卡 - 请参阅 http://flowplayer.org/工具/演示/选项卡/accordion-horizontal.html
i always liked the jquery tools tabs for this - see http://flowplayer.org/tools/demos/tabs/accordion-horizontal.html
这是您可能感兴趣的插件: http://www.portalzine.de/Horizontal_Accordion_Plugin_2/index.html
Here a plugin that might interest you : http://www.portalzine.de/Horizontal_Accordion_Plugin_2/index.html
在这里,我重新发明了轮子。但玩得很开心! :)
在所有现代浏览器 + IE 6-7-8 中进行了测试
编辑:添加/固定标题支持(IE 6-7-8 旋转)
H - 手风琴演示
简单的 HTML:
CSS 样式例如:
有趣的部分:jQuery!
还有一件事 - 您只需使用 set
将手风琴包装到定位的“容器”中height
和width
以避免手风琴元素在窗口调整大小时“跳舞”。Here, I reinvented the wheel. But had looot of fun! :)
Tested in all modern browsers + IE 6-7-8
EDIT: added/fixed title support (rotaion for IE 6-7-8)
H - ACCORDION DEMO
The simple HTML:
The CSS style Ex:
And the fun part: jQuery !
One more thing- you'll just have to wrap the accordion into a positioned 'container' with set
height
andwidth
to avoid accordion elements 'dance' on window resize.