即使页面可能会向下滚动,如何在页面中间放置jquery进度条?
<div id="progressbar"></div>
$( "#progressbar" ).progressbar({
value: false
});
答案 0 :(得分:4)
如果您的意思是固定在视口的中心,例如 this fiddle
您需要制作进度条position: fixed;
,将其从顶部放置50%,从左侧放置50%。然后你需要使用负margin-left
和负margin-top
如果进度条为500px
宽且20px
高,则会出现这种情况:
#progress {
width: 500px;
height: 20px;
position: fixed;
top: 50%;
left: 50%;
margin: -10px 0 0 -250px;
}
答案 1 :(得分:0)
将#progressbar
&#39; s position
声明为fixed
。 fixed
元素始终引用浏览器窗口。
<style>
#progressbar { position:fixed; top: 50%; left:50%; }
</Style>