Bootstrap Popover を使用してマップを作成しました。
IE7のみで左メニューにカーソルを合わせると。ポップオーバー ボックスは約 10% で表示され、4 ~ 5 秒後に表示されます。読み込まれます。
Popover と IE7 で何か問題に遭遇した人はいますか?
私のJSは次のように設定されています:
$('.hover_over').popover(
{ html:true,
animation:true,
delay: 0
}
)
また、条件付きIE7コードのセットアップもいくつかあります...
<!--[if IE 7]>
<style type="text/css">
.popover {
*max-width:70% !important;
}
.popover-title {
height: auto !important;
padding-bottom: 4px !important;
}
.tooltip_main {
margin-top: 5px !important;
}
</style>
<![endif]-->
どんな助けでも感謝します。
ありがとう