Chinaunix首页 | 论坛 | 博客
  • 博客访问: 268602
  • 博文数量: 59
  • 博客积分: 1368
  • 博客等级: 中尉
  • 技术积分: 1071
  • 用 户 组: 普通用户
  • 注册时间: 2012-02-02 06:06
文章分类

全部博文(59)

文章存档

2012年(59)

我的朋友

分类: 系统运维

2012-04-05 16:29:40

jQuery Mobile 基础入门

三大移动Web开发框架哪个适合你

经典收藏 50个jQuery Mobile开发技巧集萃

修正ui-field-contain

点击(此处)折叠或打开

  1. @media all and (max-width: 450px){
  2.   .ui-field-contain, .ui-mobile fieldset.ui-field-contain {
  3.     border-width: 0 !important;
  4.     padding: 0 !important;
  5.     margin: 1em 0 !important;
  6.   }
  7. }
关闭ajax

点击(此处)折叠或打开

  1. $(document).bind("mobileinit", function(){
  2.   $.extend($.mobile, {
  3.     ajaxEnabled: false,
  4.     defaultDialogTransition: 'none',
  5.     defaultPageTransition: 'none',
  6.     pushStateEnabled: false
  7.   });
  8. });
页面背景

点击(此处)折叠或打开

  1. .ui-page {
  2.     background : transparent url(../images/banner.jpg) 0 0 no-repeat fixed !important;
  3.     background-size : cover;
  4. }




end
阅读(1265) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~