多列下拉菜单上的 jQuery dropshadow

发布于 2024-10-29 01:13:28 字数 880 浏览 1 评论 0原文

我正在尝试通过为我的目的调整脚本来在我的CSS下拉菜单上应用jQuery Dropshadow。

我现在想实现的目标是在我遵守列表元素时动态应用CSS左值。

http://nlhca.steveforest.com/index.shtml

- ,当我结束时,例如'关于nlhca'div.dropshadow inline inline左值,左值为0。

style="left: -9997px; margin: 0px; position: absolute; top: 28px; z-index: 1;">

到达

style="left: 0px; margin: 0px; position: absolute; top: 28px; z-index: 1;">

dropshadow脚本为 http://nlhca.steveforest.com/templates/js/jquery.dropshadow.js

我尝试过的最后一件事:

 $('#dropList ul#nav li.sub a.level1-a:hover div.dropShadow').css('left:0;');

感谢您的帮助!

I'm trying to apply a jQuery dropshadow on my CSS dropdown menu by adapting a script for my purpose.

What I want to achieve, unsuccessfully by now, is to apply dynamically a CSS left value when I'm over a list element.

http://nlhca.steveforest.com/index.shtml - go on 'About NLHCA'

So, when I'm over e.g. 'About NLHCA' div.dropShadow inline left value goes to 0.

style="left: -9997px; margin: 0px; position: absolute; top: 28px; z-index: 1;">

to

style="left: 0px; margin: 0px; position: absolute; top: 28px; z-index: 1;">

The dropshadow script is http://nlhca.steveforest.com/Templates/js/jquery.dropshadow.js

Last thing I tried :

 $('#dropList ul#nav li.sub a.level1-a:hover div.dropShadow').css('left:0;');

Thanks for you help!

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

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

发布评论

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

评论(1

つ低調成傷 2024-11-05 01:13:28
  1. 您使用什么版本的 jQuery?最新的是1.5.2; dropshadow 插件是为 1.2.6 编写的,已有 3 年历史了。
  2. 这不是您使用 .css() 的方式。这是:

    $('选择器').css('左', 0); // 或者
    $('选择器').css({left: 0});
    
  3. 为什么你不使用 普通的旧CSS为此?
  1. What version of jQuery are you using? The latest is 1.5.2; the dropshadow plugin is written for 1.2.6 which is 3 years old.
  2. That's not how you use .css(). This is:

    $('selector').css('left', 0); // or
    $('selector').css({left: 0});
    
  3. Why aren't you using plain old CSS for this?
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文