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.
我正在尝试开发一种解决方案,它将 FancyBox 浮动到我的内容区域的右侧(与右边距齐平)。
当设置为 1 时,内置的 leftRatio 参数让我接近,但它将框浮动到视口的右侧(而不是内容区域)。
我是使用 jQuery 并尝试学习的新手,所以如果您能简单地解释一些事情或向我指出一些可以帮助我的文档,那就太好了。
非常感谢你的帮助。
凯文
fancybox-wrap尝试在元素上应用 css :
fancybox-wrap
#fancybox-wrap { float: right; }
(您可能需要添加!important;)
!important;
如果失败了,你可以尝试同样的方法,但使用 jQuery:
$('#fancybox-wrap').css("float", "right");