使用jquery和phonegap的iPad屏幕闪烁?

使用jquery和phonegap的iPad屏幕闪烁?,jquery,css,cordova,jquery-mobile,Jquery,Css,Cordova,Jquery Mobile,所以我终于在我的ipad上安装了我的应用程序,但是在使用导航时会有轻微的闪烁-我希望当我打包它时它会消失,但是如果我遗漏了什么 这是一个给我搭档的视频,显示它闪烁, 这是我的导航代码和第一页 <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link href="all.css" rel="stylesheet" type="t

所以我终于在我的ipad上安装了我的应用程序,但是在使用导航时会有轻微的闪烁-我希望当我打包它时它会消失,但是如果我遗漏了什么

这是一个给我搭档的视频,显示它闪烁,

这是我的导航代码和第一页

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="all.css" rel="stylesheet" type="text/css"/>
<link href="jquery.mobile.theme-1.0.min.css" rel="stylesheet" type="text/css"/>
<link href="jquery.mobile.structure-1.0.min.css" rel="stylesheet" type="text/css"/>
<script src="jquery-1.6.4.min.js" type="text/javascript"></script>
<script src="jquery.mobile-1.0.min.js" type="text/javascript"></script>
</head> 
<body> 
<!--PAGE START-->
<div data-role="page" id="page">
    <div data-role="header">
        <h1>CPA for Newbies</h1>
    </div>
    <div data-role="content">   
        <ul data-role="listview" data-inset="true">
            <li><a href="#page2"><img src="images/1.png" width="146" height="140" />
                    <h3>Video #1</h3><p>What is CPA?</p></a></li>
            <li><a href="#page3"><img src="images/2.png" width="146" height="140" />
                    <h3>Video #2</h3><p>List of CPA Networks</p></a></li></a></li>
            <li><a href="#page4"><img src="images/3.png" width="146" height="140" />
                    <h3>Video #3</h3><p>Sign up for CPA Networks</p></a></li></a></li>
            <li><a href="#page5"><img src="images/4.png" width="146" height="140" />
                    <h3>Video #4</h3><p>CPA Types</p></a></li></a></li>
            <li><a href="#page6"><img src="images/5.png" width="146" height="140" />
                    <h3>Video #5</h3><p>Keyword Research</p></a></li></a></li>
            <li><a href="#page7"><img src="images/6.png" width="146" height="140" />
                    <h3>Video #6</h3><p>Landing Pages</p></a></li></a></li>
            <li><a href="#page8"><img src="images/7.png" width="146" height="140" />
                    <h3>Video #7</h3><p>Promoting Your Site</p></a></li></a></li>
        </ul>       
    </div>
    <div data-role="footer">
        <h4>MachuPicchuMobile.com</h4>
    </div>
</div>
<!--PAGE START-->
<div data-role="page" id="page2">
    <div data-role="header">
        <h1>CPA for Newbies</h1>
    </div>
    <div data-role="content">   
        <h1>Video #1</h1>
        <video controls width="auto" height="auto">
        <source src="videos/1.mp4" type="video/mp4">
        </video>
        <h3>What CPA Is And Why You Will Want To Get Into It</h3>   
        <p>CPA, also known as Cost Per Action is a great way for publishers like you to make money.  The way you make money with CPA is if the traffic you send takes a specific action, whether it's filling out a zip code, email address, or a form.  For advertisers it's a great way to build leads and many advertisers are willing to pay you anywhere from $1, $15 or more just to get a lead.  The nice thing about CPA is that you don't have to sell anything to make money.</p>             
    </div>
    <div data-role="footer">        
    <div data-role="navbar" data-position="fixed">
        <ul>
            <li><a href="#page8" data-role="button" data-icon="arrow-l" data-iconpos="bottom" data-theme="a"                    data-inline="true">Previous</a></li>

            <li><a href="#page" data-role="button" data-icon="home" data-iconpos="bottom" data-theme="a" 
                data-inline="true">Home</a></li>

            <li><a href="#page3" data-role="button" data-icon="arrow-r" data-iconpos="bottom" data-theme="a"                        data-inline="true">Next</a></li>
        </ul>
    </div><!-- /navbar -->
</div><!-- /footer -->
</div>

新手注册会计师
MachuPicchuMobile.com 新手注册会计师 视频#1 什么是注册会计师,为什么你会想进入它 CPA,也被称为行动成本,是像你们这样的出版商赚钱的好方法。你通过CPA赚钱的方式是,如果你发送的流量采取了特定的行动,无论是填写邮政编码、电子邮件地址还是表格。对于广告商来说,这是一个建立潜在客户的好方法,许多广告商愿意为获得潜在客户而向你支付1美元、15美元或更多。CPA的好处在于,你不必出售任何东西来赚钱。


版本1.3.1上可能存在jQuery Mobile的副本-您似乎正在使用1.0-您是否尝试过更新到最新版本?您还需要将jQuery更新为1.9.1。是的,我更新了jQuery,现在它工作正常-谢谢