gpt4 book ai didi

css - jQuery Mobile 为主题加载一组特定的图标?

转载 作者:太空宇宙 更新时间:2023-11-03 19:04:58 24 4
gpt4 key购买 nike

有没有办法为主题加载一组特定的图标?我尝试使用 data-theme=c 但没有成功

CSS

[data-theme=c].ui-icon,
[data-theme=c].ui-icon-searchfield:after {
background-image: url(../images/icons-18-black.png) /*{global-icon-set}*/;
background-repeat: no-repeat;
-moz-border-radius: 9px;
-webkit-border-radius: 9px;
border-radius: 9px;
}

html

<ul data-role="listview" data-divider-theme="b" data-inset="true">
<li data-theme="c">
<a href="#page4" data-transition="slide">
Items
</a>
</li>

最佳答案

在 [data-theme=c] 和 .ui-icon 之间留一个空格。

[data-theme=c] .ui-icon,
[data-theme=c] .ui-icon-searchfield:after {
background-image: url(../images/icons-18-black.png);
}

如果这不起作用,您的路径也是错误的,请尝试输入完整的 url 进行测试。

background-image: url(http://code.jquery.com/mobile/1.1.0/images/icons-18-black.png);

这是一个例子 http://jsfiddle.net/codaniel/CDUth/4/

关于css - jQuery Mobile 为主题加载一组特定的图标?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10678352/

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