gpt4 book ai didi

CSS 导航菜单自定义符号

转载 作者:行者123 更新时间:2023-11-28 14:33:12 25 4
gpt4 key购买 nike

我想弄清楚“加号”符号是如何显示在此页面的导航菜单项的悬停事件中的:http://www.syracusecoe.org/coe/

谁能给点建议

谢谢。

最佳答案

它被添加为背景图像... 您可以在此处找到样式

http://www.syracusecoe.org/coe/SpryAssets/SpryMenuBarVertical.css

第 175 行。

这是代码,因为在浏览器中可能很难找到第 175 行。

/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarVertical a.MenuBarItemSubmenuHover
{
background-image: url(../switchimages//wh_cross.gif);
background-repeat: no-repeat;
background-position: 95% 50%;
}

哦,那是一个使用 javascript 添加的类,它不是 css :hover 做的。

关于CSS 导航菜单自定义符号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7096596/

25 4 0