gpt4 book ai didi

javascript - 如何将 jQuery UI 工具提示与我的自定义 CSS 一起使用

转载 作者:行者123 更新时间:2023-11-28 11:52:41 24 4
gpt4 key购买 nike

我正在使用 jQueryUI 工具提示和自定义 CSS 对其进行格式化。工具提示即将到来,但无法在其上应用我的 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 tooltip custom class on page load但没有任何帮助。

最佳答案

您可以使用 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

关于javascript - 如何将 jQuery UI 工具提示与我的自定义 CSS 一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20239396/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com