2

有人知道如何为 jQueryMobile 构建的站点更改和/或设置背景图像吗?因为我尝试了所有我发现的东西(实际上并没有那么多),但我真的无法覆盖 jquery mobile 的默认 css (http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1. 0.min.css)添加我自己的。希望得到您的帮助,谢谢!


已解决:在您的 CSS 文件中,您必须覆盖 jQuery Mobile “.ui-mobile .type-home .ui-content”。我就是这样做的:

.ui-mobile .type-home .ui-content { 
    background: white url(Image/A-HD.jpg); 
    background-repeat: no-repeat; background-position: 50% 80%; /*50% 80% mozilla optimized*/ 
    background-attachment: fixed; 
    background-size: 50%; /*50% mozilla optimized */ 
}
4

2 回答 2

2

你可以试试

.ui-page{
    background:url("../../Images/your.png") no-repeat;
    background-size:cover;
}

这段代码过去对我有用。

于 2013-01-07T18:23:11.920 回答
0

发现了(a?)问题:我必须覆盖.ui-mobile .type-home .ui-content 并在其中放置我想要的所有属性。希望它可以帮助某人!

于 2012-07-04T15:07:41.667 回答