在 scriptaculous 中固定/取消固定可拖动 div

发布于 2024-08-02 23:51:27 字数 137 浏览 3 评论 0原文

我在购物车的 css div 上使用可拖动效果(prototype+script.aculo.us)。我想在这个 div 中插入一个链接,允许用户在固定定位和绝对定位之间切换。 script.aculo.us 有什么简单的方法吗? (到目前为止我什么也没发现)

I'm using a draggable effect on a css div for a shopping cart (prototype+script.aculo.us). I want to insert a link into this div which allows the users to toggle between fixed and absolute positioning. Does script.aculo.us has any simple way of doing it? (So far i found nothing)

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

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

发布评论

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

评论(1

墨小墨 2024-08-09 23:51:27

您正在寻找的实际上并不是脚本的一部分,而是原型的一部分。您正在寻找的代码将是以下代码之一:

$('element').relativize(); // to make the element relatively positioned
$('element').absolutize(); // to make the element absolutely positioned
$('element').setStyle({position:'fixed'}); // to make the element fixed

What you're looking for is not actually part of scriptaculous but is part of prototype. The code you're looking for is going to be one of these:

$('element').relativize(); // to make the element relatively positioned
$('element').absolutize(); // to make the element absolutely positioned
$('element').setStyle({position:'fixed'}); // to make the element fixed
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文