第一次在phonegap中运行问题

时间:2013-07-02 07:54:21

标签: android cordova

我创建了一个phonegap应用程序,但是当它第一次运行时,它无法正常工作。它包含2个jquery动画,在第一次运行位置遇到一些麻烦。 我认为它的问题与缓存有关。

确定。我的javascript代码:

 $(document).ready(function(){
{
var width=window.innerWidth;
//var id1Width=document.getElementById("Id1").clientWidth;
var myIdWidth=document.getElementById("myId").clientWidth;
width=(width/2)-(myIdWidth/2);
  var height1= window.innerHeight;
   var idHeight= document.getElementById("myId").clientHeight;
  var t=height1;
  t= t-document.getElementById("Id1").clientHeight;
   height1=(height1/2)-(idHeight/2);
     document.getElementById("myId").style.top=height1;
     document.getElementById("myId").style.left=width;
  var s=document.getElementById("Id1").clientHeight;
  //t=height1-2*t;
  //$("button").click(function(){
  //alert("ddccd");
     $("#Id1").animate({top:-height1,height:'0%'},7000);
     $("#Id2").animate({top:(1.02*t-height1-(s)),height:'0%'},7000);
  //})
  }});

1 个答案:

答案 0 :(得分:0)

确保以下内容(适用于android)

1.进口cordova并添加到构建路径 2. config.xml已正确维护和配置 3.也正确维护Androidmanifst.xml 4. mainactivity.java中的路径是正确的。

首先检查这些内容,然后查看是否发生错误。
至于使用phonegap,如果使用得当,它是最好的,如果没有,可以制作一个灾难应用程序。