2
A
回答
4
你應該可以使用css:bottom:0px;
0
當用戶向下滾動頁面時,是否希望某些項目停留在瀏覽器窗口的底部,或者某個項目「粘」到頁面的底部,哪裏可能?
如果你想#2,可以找到一個跨瀏覽器的CSS方法here。
2
瀏覽器的底部位置是從頂部到底部的距離:0到底部,它等於客戶端文檔的高度。它可以很容易地計算如下:
$(document).ready(function() {
var bottomPosition = $(document).height();
alert(bottomPosition);
});
希望這是幫助
+3
即文檔的高度,而不是窗口的底部。甚至窗戶的高度,這不是正確的答案。 – 2013-06-21 15:18:57
1
這裏是我的,需要留在頁面底部的基本項目的方法。
首先是JavaScript。 「centerBottom」功能是動作發生的地方。
<script type="text/javascript">
/**
* move an item to the bottom center of the browser window
* the bottom position is the height of the window minus
* the height of the item
*/
function centerBottom(selector) {
var newTop = $(window).height() - $(selector).height();
var newLeft = ($(window).width() - $(selector).width())/2;
$(selector).css({
'position': 'absolute',
'left': newLeft,
'top': newTop
});
}
$(document).ready(function(){
// call it onload
centerBottom("#bottomThing");
// assure that it gets called when the page resizes
$(window).resize(function(){
centerBottom('#bottomThing');
});
});
</script>
一些樣式可以清楚地說明我們正在移動的東西。如果人們不知道高度和寬度,那絕對是難以移動的物品。如果未指定,DIV的寬度通常爲100%,這可能不是您想要的。
<style type="text/css">
body {
margin: 0;
}
#bottomThing {
background-color: #600; color: #fff; height:40px; width:200px;
}
</style>
而頁面的主體:
<body>
<div id="bottomThing">
Put me at the bottom.
</div>
</body>
與位置
相關問題
- 1. 如何在瀏覽器上獲取當前視口的底部位置
- 2. 在Android瀏覽器中獲取位置
- 3. 從網絡瀏覽器獲取位置
- 4. 如何定位div相對於瀏覽器窗口的底部
- 5. 在IE瀏覽器和其他瀏覽器中獲取元素位置
- 6. 如何使用Node JS獲取瀏覽器的下載位置?
- 7. 如何從瀏覽器獲取客戶端的位置?
- 8. 如何設置功能以在瀏覽器中獲取用戶位置?
- 9. 獲取屏幕位置的底部
- 10. cocos2d-html5 onMouseDown,如何在瀏覽器中獲得轉換位置?
- 11. 股利在瀏覽器底部
- 12. 正好位於瀏覽器視圖底部下方的位置div
- 13. 如何使用jquery點擊瀏覽器在任何位置
- 14. 獲取移動Safari瀏覽器中「視口」的位置?
- 15. 如何在safari瀏覽器中獲取當前位置(城市,州,郵編)?
- 16. 瀏覽器瀏覽鼠標位置的頻率如何?
- 17. 如何獲取JQuery代碼在我的瀏覽器上運行?
- 18. iFrame文檔中的Javascript - 如何獲取瀏覽器地址欄位置?
- 19. 獲取瀏覽器的URL與jQuery
- 20. 如何在持久性瀏覽器底部創建一個欄?
- 21. 在Android Studio中滾動瀏覽底部?
- 22. 如何獲取瀏覽器的名稱?
- 23. 如何獲取瀏覽器的winid?
- 24. 如何獲取瀏覽器的座標?
- 25. 如何獲取瀏覽器的高度
- 26. 獲取瀏覽器
- 27. 在容器底部的位置標題
- 28. 獲取瀏覽器窗口的位置,無論縮放
- 29. 在硒瀏覽器中獲取瀏覽器關閉事件
- 30. 如何將Chrome Web Inspector放置在瀏覽器側面而不是底部?
一起:固定; – 2013-06-21 15:19:15