jquery UI工具提示的自定义背景图像

时间:2013-12-11 05:28:20

标签: javascript jquery css jquery-ui tooltip

我想为jquery UI tootltip设置自定义背景图片  它可以吗?
我使用jquery-ui-1.10.3.custom.js。

我尝试了下面的css.But并不完美。

.ui-tooltip-content {
    position: relative;
    padding: 1em;
    background: url("images/tooltipImage.png") scroll 0 0 transparent;
}

有什么想法吗?

1 个答案:

答案 0 :(得分:1)

这是你在找什么?

.ui-tooltip {
    background: url("http://www.psdgraphics.com/file/light-wooden-background.jpg") scroll 0 0 transparent;
    background-size:2000px 60px;
    background-repeat:no-repeat;
}

参见示例:

http://jsfiddle.net/trevordowdle/kyBwU/1347/