4

ここに画像の説明を入力

ページの下部に固定されたフッターに適用された上記のナビゲーション バーの画像に注目して、次の点についてサポートをお願いします。

  • 各ボタンの上に表示されるアイコンをきちんと中央に配置するようにフォーマットします (理想的には CSS を使用しますが、jQuery / jQuery Mobile が使用可能であるため許可されます)。
  • コードをクリーンアップします。HTML と CSS の両方に、私がやっていることのより簡単なバージョンがあると確信しています。

アイコンは 24x24 で、HTML に使用されるコードは次のとおりです。

<div data-role="footer" data-position="fixed" data-tap-toggle="false">
<div id="navigation" data-role="controlgroup" data-type="horizontal" class="center">
  <a href="#" data-role="button" data-iconpos="top" id="home" data-icon="custom">Home</a>
    <a href="#" data-role="button" data-iconpos="top" id="powerSource" data-icon="custom">Power Sources</a>
    <a href="#" data-role="button" data-iconpos="top" id="storage" data-icon="custom">Storage</a>
    <a href="#" data-role="button" data-iconpos="top" id="tripAnalysis" data-icon="custom">Trip Analysis</a>
    <a href="#" data-role="button" data-iconpos="top" id="tripManager" data-icon="custom">Trip Manager</a>
    <a href="#" data-role="button" data-iconpos="top" id="warning" data-icon="custom">Warnings & Alarms</a>
    <a href="#" data-role="button" data-iconpos="top" id="powerSys" data-icon="custom">Power Systems</a>
    <a href="#" data-role="button" data-iconpos="top" id="settings" data-icon="custom">Settings</a>
</div>
</div> <!-- / footer -->

以下は、私が適用したCSSです(あちこちから探し出し、かなりの部分を編集しました):

.ui-icon-custom {
    width:30px !important;
    height:25px !important;
    margin-left:-15px !important;
}
.center {
    text-align: center;
}
#home .ui-icon {
    background-image: url(/images/icons/home.png);
    background-repeat: no-repeat;
}
#powerSource .ui-icon {
    background-image: url(/images/icons/powerSource.png);
    background-repeat: no-repeat;
}
#storage .ui-icon {
    background-image: url(/images/icons/storage.png);
    background-repeat: no-repeat;
}
#tripAnalysis .ui-icon {
    background-image: url(/images/icons/tripAnalysis.png);
    background-repeat: no-repeat;
}
#tripManager .ui-icon {
    background-image: url(/images/icons/tripManager.png);
    background-repeat: no-repeat;
}
#warning .ui-icon {
    background-image: url(/images/icons/warning.png);
    background-repeat: no-repeat;
}
#powerSys .ui-icon {
    background-image: url(/images/icons/powerSys.png);
    background-repeat: no-repeat;
}
#settings .ui-icon {
    background-image: url(/images/icons/settings.png);
    background-repeat: no-repeat;
}
4

0 に答える 0