如何将jQueryUI与我的自定义css一起使用

How to use jQueryUI tootip along with my custom css

本文关键字:css 一起 自定义 我的 jQueryUI      更新时间:2023-10-27

我正在使用jQueryUI工具提示&自定义css来格式化它。Tooltip即将到来,但无法在上面应用我的css类。代码:

$(document).ready(function () {
    $("#roles").tooltip({ content: "Start typing a name for the IT role you're staffing. There are 75 to choose from. If you're uncertain, start with something general like '<i>Manager</i>'" });    
});

HTML

<input id="roles" type="text" class="wGridPx_16"/>

CSS

<style>
        .ui-tooltip
        {
            font-size: 11px;
            color: #fff;
            text-shadow: 0 0 2px #000;
            padding: 4px 8px;
            border: 1px solid rgba(255,255,255,0.25);
            background-color: rgb(25,25,25);
            background-color: rgba(25,25,25,0.82);
            background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(transparent), to(#000));
            border-radius: 3px;
            -webkit-border-radius: 3px;
            -moz-border-radius: 3px;
            box-shadow: 0 0 3px #555;
            -webkit-box-shadow: 0 0 3px #555;
            -moz-box-shadow: 0 0 3px #555;
        }
    </style>

请帮忙。我已经查看了很多关于它的问答博客,比如页面加载上的jquery ui工具提示自定义类,但对我没有任何帮助

您可以使用tooltipClass选项

$(document).ready(function () {
    $("#roles").tooltip({
        content: "Start typing a name for the IT role you're staffing. There are 75 to choose from. If you're uncertain, start with something general like '<i>Manager</i>'",
        tooltipClass: 'my-class'
    });
});

然后

.my-class.ui-tooltip {
    font-size: 11px;
    color: #fff;
    text-shadow: 0 0 2px #000;
    padding: 4px 8px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background-color: rgb(25, 25, 25);
    background-color: rgba(25, 25, 25, 0.82);
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(transparent), to(#000));
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    box-shadow: 0 0 3px #555;
    -webkit-box-shadow: 0 0 3px #555;
    -moz-box-shadow: 0 0 3px #555;
}

演示:Fiddle