jquery 中的 .animate 框架集

发布于 2024-11-17 23:36:00 字数 273 浏览 3 评论 0原文

我正在尝试通过 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 技术交流群。

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

发布评论

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

评论(1

月依秋水 2024-11-24 23:36:00

抱歉,您无法cols 属性设置动画。
$.animate 已构建为动画 CSS 属性,而 cols 不是其中之一。

I'm sorry, but you can't animate the cols property.
$.animate has been built to animate css properties, and cols isn't one of them.

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