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.
我在我的主页上使用了出色的 Zurb 插件Orbit,我试图将项目符号(通常在滑块下方)移动到页面上的不同位置(在这种情况下,在滑块上方的标题中)
我尝试了以下代码:
jQuery('.orbit-header').append(jQuery('ul.orbit-bullets'));
这会删除项目符号,但它们不会出现。我不认为它们尚未生成,因为我尝试将其放入幻灯片更改的函数中,但这并没有帮助。
有任何想法吗?
可能您需要修改 css :
http://jsfiddle.net/Awea/mZYX9/10/
尝试这个:
.orbit-bullets { display: table; text-align: center; top: -16px; }