jQuery .animate() forces style “overflow:hidden”

来源:互联网 发布:eplan软件 64位 编辑:程序博客网 时间:2024/05/01 02:43

http://stackoverflow.com/questions/3363035/jquery-animate-forces-style-overflowhidden

jQuery's .animate() forces the style overflow: hidden when triggered, messing with my animated element because I have another element that's hanging, with negative position, outside of it. is there anyway to avoid that?


Answer:

you can use $('element').animate().css('overflow', 'visible');

0 0