PhoneGap Page scroll up after Keyboard appearance in iOS devices that makes the PhoneGap page corrupted

后端 未结 6 1391
刺人心
刺人心 2020-12-17 02:10

I am trying to develop a chatting application using PhoneGap for iOS devices. The application has a header that shows the logged user, a footer where user can write his text

6条回答
  •  甜味超标
    2020-12-17 02:25

    I fixed it using css and a wrapper

    /*Phone < 5:*/
     @media screen and (device-aspect-ratio: 2/3) {
      .content {
       height: 416px !important;
     }
    }
    
     /*iPhone 5:*/
    @media screen and (device-aspect-ratio: 40/71) {
      .content {
        height: 504px !important;
      }
    }
    

提交回复
热议问题