jquery blockui定位
我正在使用 blockui 在我的网站上抛出一些表单,但由于某种原因,blockui 元素的位置距屏幕底部约 20-30 像素。我尝试按照文档 (jquery blockui options for v2) 使用此代码重新定位它:
$.blockUI({css: {top : '10px'}});
但这只是以一种宇宙嘲笑的方式对我打哈欠,什么也没做。同样,根据文档,默认值是 top:40%。我不想清除所有的blockui css,只是重置顶部定位。
I'm using blockui to throw some forms up on my site but for some reason the blockui element is positioned about 20-30 pixels from the bottom of the screen. I tried, per the docs (jquery blockui options for v2) to reposition it using this code:
$.blockUI({css: {top : '10px'}});
But that just yawned at me in a universe mocking kind of way and did nothing. The default, again, per the docs, is top : 40%. I don't want to wipe out all the blockui css, just reset the top positioning.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我使用它,加载消息位于右上角。只需使用适合的 CSS 即可。
希望这有帮助。
抢
I use this and the Load Message is positioned to the top right hand corner. Just play with the css to suit.
Hope this helps.
Rob
文档给出了这个例子:
所以我会尝试这个:
使用等号(=)而不是第二个冒号。希望这有帮助!
The documentation gives this example:
So I would try this:
Using an equal sign (=) instead of a second colon. Hope this helps!