jquery 中的 .animate 框架集
我正在尝试通过 jquery .animate 更改框架集 cols 。但它不能作为动画工作,它会立即改变颜色。
有没有办法对框架集 cols 属性进行动画处理?
这是我的代码,
function hideit()
{
var myframeset = window.top.document.getElementById("fs");
$(myframeset).animate({
cols: "*,0"
}, 1500 );
}
I'm trying to change frameset cols by jquery .animate . But it's not working as an animate, it changes the cols immediately.
Is there anyway to animate frameset cols property?
here is my code,
function hideit()
{
var myframeset = window.top.document.getElementById("fs");
$(myframeset).animate({
cols: "*,0"
}, 1500 );
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
抱歉,您无法为
cols
属性设置动画。$.animate
已构建为动画 CSS 属性,而cols
不是其中之一。I'm sorry, but you can't animate the
cols
property.$.animate
has been built to animate css properties, andcols
isn't one of them.