改变方向变化的图像

时间:2012-08-01 13:40:10

标签: ios ipad jquery-mobile cordova orientation-changes

所以我使用phoneGap / Cordova和Jquery mobile为iPad设计这个应用程序。

在研究如何改变方向变化的图像并浏览Stack Overflow的史诗资源之后。我实现了这段代码。

// The event for orientation change
var onChanged = function () {

    // The orientation
    var orientation = window.orientation,
        // If landscape, then use "land" otherwise use "port"
        image = orientation == 90 || orientation == -90 ? "landscape" : "portrait";

    // Insert the image
    $('#introimg').html('<img src="images/appimages/' + image + '-intro-page.png">');

};

// Bind the orientation change event and bind onLoad
$(window).bind(orientationEvent, onChanged).bind('load', onChanged);

我正在尝试更改介绍页面的图像。我使用的html是:

<div data-role="page" id="intro">

        <div data-role="content" class="mycontent" data-theme="a">
            <div id="introimg">
                <img src="images/appimages/portrait-intro-page.png" alt="" width="768" height="1004" id="imglayer1" />
                <br />
                <p id="imglayer2"><a href="#help" data-role="button" data-inline="true" data-theme="a">Start designing</a></p>
            </div>

        </div>  
    </div>

任何人都可以说我做错了什么,它可能是愚蠢的东西,但我看不到它。任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:0)

您可以使用以下类:

var onChanged = function () {

    // The orientation
   var orientation = (window.orientation == -90 || window.orientation == 90) ? "landscape" : "portrait";

   // Insert the image class
  $("introimg").removeClass("portrait").removeClass("landscape").addClass(orientation);

};