0

jquery mobileマイページを利用しています

<div data-role="page" id="mapView" data-transition="slide">
        <div data-role="header" data-theme="d" data-position="fixed">
            <h1>
                <a href="" data-theme="b" data-role="button" data-mini="true" onclick="showDirection()">Get Direction</a></h1>
        </div>
         <p id="atmBoothDetails" >
            </p>
        <div data-role="content" id="mapViewContent">


            <div id="map-canvas">
            </div>
        </div>

CSS

#map-canvas
    {
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;

    }

マップがモバイル デバイスに表示されないのはなぜですか??

4

2 に答える 2

3

説明

これはたりない。< div #map-cnvas> はコンテンツ div のフルサイズのみをカバーします。残念ながら、コンテンツ div ( data-role="content") は、ヘッダーとフッターによって残された使用可能な高さを完全にカバーすることはありません。

そのため、コンテンツ div の高さを手動でサイズ変更する必要があります。

解決策 1

CSS:

#content {
    padding: 0;
    position : absolute !important; 
    top : 40px !important;  
    right : 0; 
    bottom : 40px !important;  
    left : 0 !important;     
}

動作する jsFiddle の例は、http://jsfiddle.net/Gajotres/7kGdE/ にあります

ヘッダーとフッターがない場合は、トップとボトムを 0 に置き換えます。

解決策 2

Javascript

function getRealContentHeight() {
    var header = $.mobile.activePage.find("div[data-role='header']:visible");
    var footer = $.mobile.activePage.find("div[data-role='footer']:visible");
    var content = $.mobile.activePage.find("div[data-role='content']:visible:visible");
    var viewport_height = $(window).height();
 
    var content_height = viewport_height - header.outerHeight() - footer.outerHeight();
    if((content.outerHeight() - header.outerHeight() - footer.outerHeight()) <= viewport_height) {
        content_height -= (content.outerHeight() - content.height());
    } 
    return content_height;
}

これは JavaScript ソリューションです。

また、動作中の jsFiddle の例もあります: http://jsfiddle.net/Gajotres/xbr2v/

最終的な注意事項

この問題について詳しく知りたい場合は、この記事を参照してください。いくつかの実用的な例も見つかります。

于 2013-09-29T16:03:39.110 に答える