原型圆角

发布于 2024-08-23 11:52:57 字数 428 浏览 5 评论 0原文

我正在使用 http://nurey.com/corners.html 与 Prototype 框架并尝试获取一些发生圆角动作。

但是,我正在使用的脚本

Event.observe(window, 'load', function() {
  if($$('header')!=null) {
    $('header').Effect.Corner("5px");
  }
});

似乎并没有真正使角起作用?有人可以帮忙吗?

编辑:我得到的错误是

$("header").Effect is undefined

I am using http://nurey.com/corners.html with Prototype framework and trying to get some rounded corner action happening.

However, the script I am using

Event.observe(window, 'load', function() {
  if($('header')!=null) {
    $('header').Effect.Corner("5px");
  }
});

Doesn't appear to actually make the corners work ? Can anyone help ?

Edit: The error I get is

$("header").Effect is undefined

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

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

发布评论

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

评论(1

澉约 2024-08-30 11:52:57

你尝试过吗

new Effect.Corner($('header'), '5px');

Have you tried

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