jQuery Mobile 基础入门
三大移动Web开发框架哪个适合你
经典收藏 50个jQuery Mobile开发技巧集萃
修正ui-field-contain
- @media all and (max-width: 450px){
- .ui-field-contain, .ui-mobile fieldset.ui-field-contain {
- border-width: 0 !important;
- padding: 0 !important;
- margin: 1em 0 !important;
- }
- }
关闭ajax
- $(document).bind("mobileinit", function(){
- $.extend($.mobile, {
- ajaxEnabled: false,
- defaultDialogTransition: 'none',
- defaultPageTransition: 'none',
- pushStateEnabled: false
- });
- });
页面背景
- .ui-page {
- background : transparent url(../images/banner.jpg) 0 0 no-repeat fixed !important;
- background-size : cover;
- }
end
阅读(1301) | 评论(0) | 转发(0) |