0
我是一個總noob,只花了3小時googling &嘗試,但無法弄清楚。我有這個更改bootstrap的位置2.1.1在手機上的工具提示
<span class="payshiptiptop tooltips">
<a href="#" id="payshiptiptop" rel="tooltip" data-placement="right" data-original-title="<div class='paymentmethods'></div>" data-html="true">
GRATIS Versand
</a>
</span>
但是,如果它是在移動,它應該放在上面。 由於2.1.1不支持自動正確,我嘗試了幾個代碼從stackoverflow例如Is it possible to change the position of Bootstrap popovers based on screen width?和Changing the position of Bootstrap popovers based on the popover's X position in relation to window edge?以及許多其他人。
我想這是要走的路:
<script>
var options = {
placement: function (context, source) {
var position = $(source).position();
if (position.left < 480) {
return "top";
}
return "right";
}
};
$("#payshiptiptop").popover(options);
</script>
我真的很感激,如果你能幫助我&告訴我,我在我的PHP文件發佈。謝謝!
謝謝,但我需要改變的是數據放置,它定義了使用js的工具提示的絕對位置。使用css不可能得到結果,bc我無法計算絕對位置值。 – user1921209 2014-11-15 08:49:36