jQuery 和 webkit,如何让 css({top:, left:}) 工作?

发布于 2024-12-03 19:42:22 字数 291 浏览 0 评论 0原文

我试图做一些很好的事情来显示错误消息,一切都很好,直到我决定尝试使用 chrome/safari,这是代码:

这里: http://pastebin.com/VymWLNTT

或此处:http://jsfiddle.net/YfrVJ/

有谁知道解决方法或其他类似的方法来显示错误消息?谢谢。

I was trying to do something nice to display an error message, and everything was fine until I decided to try with chrome/safari, this is the code:

Here: http://pastebin.com/VymWLNTT

Or here: http://jsfiddle.net/YfrVJ/

Does anyone know a workaround or another similar way to display error messages?, thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

〃安静 2024-12-10 19:42:23

未经进一步检查:+=50% 失败。把它改成绝对像素值就可以了。

编辑:或者删除“+=”。

http://jsfiddle.net/LTgUY/1/

Without further inspection: +=50% fails. Change it to an absolute pixel value and it will work.

Edit: Alternatively remove "+=".

http://jsfiddle.net/LTgUY/1/

把时间冻结 2024-12-10 19:42:23

.animate 使用的百分比值替换为绝对值。您可以按照与 vleft 值类似的方式来计算它,例如:

var topDelta = ($(window).height() - this.outerHeight()) / 2;

然后使用它代替 50%

this.animate({ opacity:0.8, top: '+=' + topDelta }, ...

Replace the percentage value used with .animate with an absolute value. You can calculate it in a similar manner as you do with the vleft value, e.g.:

var topDelta = ($(window).height() - this.outerHeight()) / 2;

Then use it instead of the 50%:

this.animate({ opacity:0.8, top: '+=' + topDelta }, ...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文