开发者

How to make browser fade after submitting a form

开发者 https://www.devze.com 2023-04-05 01:01 出处:网络
For some reason, my browser gets really ugly when I submit it (I mean divs and label stretc开发者_StackOverflow社区h across the screen, buttons lose there images and also get stretched out.It is very

For some reason, my browser gets really ugly when I submit it (I mean divs and label stretc开发者_StackOverflow社区h across the screen, buttons lose there images and also get stretched out. It is very ugly. How can I make the browser kind of blur or fade when submitting a form using jquery, HTML or any other technology.


To fade out the contents of the screen before submitting try

$("html, body").fadeOut(1000, function(){ $("#formId").submit(); });
0

精彩评论

暂无评论...
验证码 换一张
取 消