jquery.com 的阴影效果

发布于 2024-10-28 09:35:51 字数 495 浏览 6 评论 0原文

我不明白 www.jquery.com 如何在二级菜单上制作悬停阴影效果(下载、文档...”。我以为这是一个简单的 jquery 插件,但我在任何地方都找不到它。

我发现了这个: http://www.hintzmann.dk/testcenter/js/jquery/textshadow/,这非常简单,但是(当然)Internet Explorer 存在问题。当距离设置为 1px 时,IE 显示 2px...这在我的情况下毫无用处,

我对 jquery.com 脚本非常感兴趣。 (

我在 IE 中看到了 1px off 的一种解决方案(http://stackoverflow.com/questions/2678037/css3-text-shadow-effect-with-jquery),但我对使用提到的脚本不太感兴趣:(

i cant figure out how www.jquery.com made their hover shadow effect on the secondary menu (Download, Documentation...". I thought it was a simple jquery plugin, but i cant find it anywhere.

I've found this: http://www.hintzmann.dk/testcenter/js/jquery/textshadow/, which is very straight forward, but (ofcourse) theres a problem with internet explorer. When the distance is set to 1px IE shows 2px... which makes it useless in my case

Im very interested in the jquery.com script..

(I've seen one solution for the 1px off in IE (http://stackoverflow.com/questions/2678037/css3-text-shadow-effect-with-jquery), but im not very interested in using the mentioned script :(

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

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

发布评论

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

评论(3

旧梦荧光笔 2024-11-04 09:35:51

这只是CSS。文本重复一次,一次为白色,一次为黑色。黑色位于下方并偏移 0.1em

<a href="http://docs.jquery.com">
   <span class="jq-shadow">Documentation</span>
   <span>Documentation</span>
</a>

CSS:
#jq-secondaryNavigation li a span.jq-shadow {
   top: .1em;
   left: 1em;
   color: #131C25;
   position: absolute;
   display: none;
}

It's just CSS. The text is repeated, once in white and once in black. The black is underneath and offset by .1em

<a href="http://docs.jquery.com">
   <span class="jq-shadow">Documentation</span>
   <span>Documentation</span>
</a>

CSS:
#jq-secondaryNavigation li a span.jq-shadow {
   top: .1em;
   left: 1em;
   color: #131C25;
   position: absolute;
   display: none;
}
幸福还没到 2024-11-04 09:35:51

他们使用 $.fn.textDropShadow,这是一个非常简单的函数,可以在悬停时添加新元素:

http://static.jquery.com/files/rocker/scripts/custom.js

They are using $.fn.textDropShadow, which is a very simple function that adds a new element on hover:

http://static.jquery.com/files/rocker/scripts/custom.js

┈┾☆殇 2024-11-04 09:35:51

他们的 CSS 定义如下:

#jq-secondaryNavigation li a span.jq-shadow, #jq-footerNavigation li a span.jq-shadow {
top: .1em;
left: 1em;
color: #131c25;
position: absolute;
display: none;
}

他们在这里为文本赋予悬停属性:

#jq-secondaryNavigation li a:hover span.jq-shadow

Their CSS is defined as this:

#jq-secondaryNavigation li a span.jq-shadow, #jq-footerNavigation li a span.jq-shadow {
top: .1em;
left: 1em;
color: #131c25;
position: absolute;
display: none;
}

and they give the text the hover attribute here:

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