-2
我創建了一個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);
//})
}});
顯示一些代碼。顯示一些logcat。幫助我們來幫助你。 (並且請不要使用PhoneGap) – OcuS
@OcuS而不是phonegap對於瞭解前端語言HTML CSS JS的人,您會有什麼建議? –
@MatthiasWegtun:開始學習Java和Android,他們很有趣;) – OcuS