如何解决移动
我有一个使用 jQTouch 移动 Web 应用程序框架构建的移动 Web 应用程序,但是当我尝试添加动态
我在 jqtouch Google Code 票务系统
Issue 134 上发布了这个问题: Slidedown 在 LI 前面添加,但在 15 个项目左右(带有示例代码)后会导致主题跳转 http://code.google.com/p/jqtouch/issues/详情?id=134
I've got a mobile Web app built with jQTouch mobile web app framework, but when I try to add dynamic <LI> elements the theme starts jumping around like crazy. Includes a short JavaScript sample program that replicates the issue.
I posted this issue on the jqtouch Google Code ticket system
Issue 134:
slidedown prepends LI but causes theme-jumpiness after 15 items or so w/sample code
http://code.google.com/p/jqtouch/issues/detail?id=134
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您的页面上有视频元素吗?
当我将视频元素与列表放在同一页面上时,我遇到了类似的问题。
为了解决这个问题:
* 为视频创建一个div
* 设置视频尺寸为1px * 1px
* 设置div的背景为视频缩略图
* 设置div显示为遮挡
* 在 div 中插入一个链接,使用一些 javascript 播放视频:
这就解决了这个问题。
Do you have any video elements on your page?
I had a similar problem when I had video elements on the same page as the list.
To get around it:
* Create a div for the video
* Set the video dimensions to 1px * 1px
* Set the background of the div to the video thumbnail pic
* Set the div display to block
* Insert a link in the div that plays the video with some javascript:
That resolved the jerkiness.
我发现了问题,但还没有解决方法:
在文件 theme/jqt/theme.css 中
删除以下行以减少/消除跳跃:
I discovered the problem but not a workaround yet:
in the file themes/jqt/theme.css
remove the following lines to reduce/eliminate the jumpiness:
我与 Brian 合作开发了相关应用程序。看起来,在前 15 个左右的项目之后,手机会完全重绘每个新项目的视口。
我们希望 Stack 社区能够知道一个聪明的解决方法!
I worked with Brian on the application in question. It appears that the phone is completely redrawing the viewport with each new item after the first 15 or so.
We're hoping the Stack community will know of a clever workaround!