如何获得菜单的Tololtip尾巴 [英] How to get the Tololtip Tail for Menu

查看:83
本文介绍了如何获得菜单的Tololtip尾巴的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

HTML

HTML

<div id="MyForm">
    <a> <img src="ImageMenu.png" /></a>
    <ul>
        <li>
            <a class="selected" href="#">One</a>
        </li>
        <li>
            <a href="#">Two</a>
        </li>
        <li>
            <a href="#">Three</a>
        </li>
    </ul>
</div>

点击 ImageMenu.png JQuery 。如何使用 CSS 取得菜单图片下方的工具提示尾(Uparrow)?

On clicking the ImageMenu.png, I'm displaying a Menu using JQuery. How to Get the Tooltip tail (Uparrow) just under the Menuimage using CSS?

推荐答案

我认为你看起来像这样...

I think your looking something like this...






  • 两个


  • b $ b

CSS contains ...

CSS contains...

{
float:left;
height:30px;
padding:0 15px;
color:#222;
text-transform:uppercase;
font:bold 12px / 25px Arial,Helvetica;
text-decoration:none;
text-shadow:0 1px 0#000;
}

{ float: left; height: 30px; padding: 0 15px; color: #222; text-transform: uppercase; font: bold 12px/25px Arial, Helvetica; text-decoration: none; text-shadow: 0 1px 0 #000; }

{
color:#222 ;
}

{ color: #222; }

html #mymenu li a:hover / IE6 * /
{
color:# 222;
}

html #mymenu li a:hover / IE6 */ { color: #222; }

{
display:block!重要;
}

{ display: block !important; }

/ *子菜单* /

/* Sub-menu */

#mymenu ul
{
    list-style: none;
    margin: 0;
    padding: 0;    
    display: none !important;
    position: absolute;
    top: 25px;
    width:150px;
    z-index: 99999;    
    background: #fff;
    background: -moz-linear-gradient(#555, #888);
    background: -webkit-gradient(linear,left bottom,left top,color-stop(0, #888),color-stop(1, #555));
    background: -webkit-linear-gradient(#555, #888);    
    background: -o-linear-gradient(#555, #888); 
    background: -ms-linear-gradient(#555, #888);    
    background: linear-gradient(#555, #888);
    -moz-box-shadow: 0 0 2px rgba(255,255,255,.5);
    -webkit-box-shadow: 0 0 2px rgba(255,255,255,.5);
    box-shadow: 0 0 2px rgba(255,255,255,.5);   
    -moz-border-radius: 5px;
    border-radius: 5px;
}


#mymenu ul li
{
    float: none;
    margin: 0;
    padding: 0;
    display: block;  
    -moz-box-shadow: 0 1px 0 #111111, 0 2px 0 #777777;
    -webkit-box-shadow: 0 1px 0 #111111, 0 2px 0 #777777;
    box-shadow: 0 1px 0 #111111, 0 2px 0 #777777;
}

#mymenu ul li:last-child
{   
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;    
}

#mymenu ul a
{    
    padding: 7px !important;
    height: 10px;
    width: 135px;
    height: auto;
    line-height: 1.8em !important;
    text-decoration: none !important;
    font-weight:normal;
    display: block;
    white-space: nowrap;
    float: none;
    color:#fff;
    text-transform: none;
    text-align:left;

}

*html #mymenu ul a /* IE6 */
{    
    height: 10px;
}

*:first-child+html #mymenu ul a /* IE7 */
{    
    height: 10px;
}
#mymenu ul a:hover
{
    background: #d7d7d7;
    background: -moz-linear-gradient(#d7d7d7,  #d7d7d7);    
    background: -webkit-gradient(linear, left top, left bottom, from(#d7d7d7), to(#d7d7d7));
    background: -webkit-linear-gradient(#d7d7d7,  #d7d7d7);
    background: -o-linear-gradient(#d7d7d7,  #d7d7d7);
    background: -ms-linear-gradient(#d7d7d7,  #d7d7d7);
    background: linear-gradient(#d7d7d7,  #d7d7d7);
    color:#222;
    text-shadow: none;
    font-weight:bold;
    border-bottom:#222;
}
#mymenu ul li:first-child > a
{
    -moz-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
}

#mymenu ul li:first-child > a:after
{
    content: '';
    position: absolute;
    left: 30px;
    top: -8px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 8px solid #444;
}

#mymenu ul li:first-child a:hover:after
{
    border-bottom-color: #d7d7d7; 
}

#mymenu ul li:last-child > a
{
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
}

工作演示: http://jsfiddle.net/nPeaV/7430/

这篇关于如何获得菜单的Tololtip尾巴的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆