Jquery mobile jquery移动后台使用listview滚动

Jquery mobile jquery移动后台使用listview滚动,jquery-mobile,Jquery Mobile,我有一个这样的列表视图- <ul id="mylist" data-role="listview" data-inset="true" > </ul> 当我用20多行填充listview时,背景会变得扭曲和放大,当我向下滚动时,背景会保持在顶部 有没有办法使背景完全静止,保持其设置的尺寸,并使其仅滚动listview?evreything有背景,页面有listview,项目也有滚动的原因,因此一种方法是使用html标记作为背景,并对其进行修复,使页面和listview

我有一个这样的列表视图-

<ul id="mylist" data-role="listview"  data-inset="true" > </ul>
当我用20多行填充listview时,背景会变得扭曲和放大,当我向下滚动时,背景会保持在顶部


有没有办法使背景完全静止,保持其设置的尺寸,并使其仅滚动listview?

evreything有背景,页面有listview,项目也有滚动的原因,因此一种方法是使用html标记作为背景,并对其进行修复,使页面和listview保持不变,谢谢,正是我所需要的:)evreything有一个背景,页面,列表视图,项目,因此它滚动的原因,所以一种方法是使用html标记作为背景,并修复它,让页面和列表视图保持不变,谢谢,这正是我所需要的:)
#spots {
    background: transparent url('images/background.png') no-repeat; 
    background-position:center center !important;
    background-size:cover;  
}